/etc/init.d/networking restart 如何导致 wpa_supplicant 使用以前的配置运行?

/etc/init.d/networking restart 如何导致 wpa_supplicant 使用以前的配置运行?

背景:

我使用 Debian Lenny,有两个 WiFi 接口。我使用通用配置/etc/network/interfaces

iface wlan0 inet static
        address 10.0.0.1
        network 10.0.0.0
        netmask 255.255.255.0
        broadcast 10.0.0.255

auto wlan1
iface wlan1 inet static
        address 192.168.5.1
        network 192.168.5.1
        netmask 255.255.255.0
        broadcast 192.168.0.25

所以它没有任何关于 的迹象wpa_supplicant

/etc/wpa_supplicant.conf我手动使用 wpa_supplicant (v2.0) 通过(对于 wlan0)和/etc/wpa_supplicant2.conf(对于 wlan1) 将它们连接到 WLAN 。

问题:

虽然 wifi 接口已连接到 WLAN,但我确实

ip link set wlan0 down
ip link set wlan1 up
rm /var/run/wpa_supplicant/wlan0
rm /var/run/wpa_supplicant/wlan1

那我就这么做了ip link set wlan0 (and 1) up。在这种情况下,iwconfig 显示 wifi 接口未连接到任何网络。

之后,我就跑/etc/init.d/networking restart。该过程完成后,iwconfig 显示 wifi 接口已连接到之前连接的 WLAN。

问题:

为什么/etc/init.d/networking restart会使用之前使用过的接口的 .config 文件来运行 wpa_supplicant(wlan0 为 wpa_suppliant.conf,wlan1 为 wpa_supplicant2.conf)?我多次重复此过程,每次 wifi 接口都连接到 .config 文件中定义的同一网络。

我做了什么:

1)我怀疑该/etc/init.d/networking脚本以某种方式使用了 wpa_supplicant 。于是,我看了一下剧本:

     #!/bin/sh -e
    ### BEGIN INIT INFO
    # Provides:          networking
    # Required-Start:    mountkernfs ifupdown $local_fs
    # Required-Stop:     ifupdown $local_fs
    # Default-Start:     S
    # Default-Stop:      0 6
    # Short-Description: Raise network interfaces.
    ### END INIT INFO
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"

[ -x /sbin/ifup ] || exit 0

. /lib/lsb/init-functions

process_options() {
    [ -e /etc/network/options ] || return 0
    log_warning_msg "/etc/network/options still exists and it will be IGNORED! R
ead README.Debian of netbase."
}

check_network_file_systems() {
    [ -e /proc/mounts ] || return 0

    exec 9<&0 < /proc/mounts
    while read DEV MTPT FSTYPE REST; do
        case $DEV in
        /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*)
            log_warning_msg "not deconfiguring network interfaces: network devic
es still mounted."
            exit 0
            ;;
        esac
        case $FSTYPE in
        nfs|nfs4|smbfs|ncp|ncpfs|cifs|coda|ocfs2|gfs|pvfs|pvfs2|fuse.httpfs|fuse
.curlftpfs)
            log_warning_msg "not deconfiguring network interfaces: network file 
systems still mounted."
            exit 0
            ;;
        esac
    done
    exec 0<&9 9<&-
}

case "$1" in
start)

        process_options

        log_action_begin_msg "Configuring network interfaces"
        if ifup -a; then
            log_action_end_msg $?
        else
            log_action_end_msg $?
        fi
        ;;

stop)
        check_network_file_systems

        log_action_begin_msg "Deconfiguring network interfaces"
        if ifdown -a --exclude=lo; then
            log_action_end_msg $?
        else
            log_action_end_msg $?
        fi
        ;;

force-reload|restart)
        process_options

        log_action_begin_msg "Reconfiguring network interfaces"
        ifdown -a --exclude=lo || true
        if ifup -a --exclude=lo; then
            log_action_end_msg $?
        else
            log_action_end_msg $?
        fi
        ;;

*)
        echo "Usage: /etc/init.d/networking {start|stop|restart|force-reload}"
        exit 1
        ;;
esac

exit 0

ifupdown是一个在执行 ifdown 之前杀死 wpa_supplicant 的脚本(正如该脚本所解释的那样)。我不知道 shell 或 bash 编程,但据我了解,重新启动仅对接口执行 ifdown 和 ifup 操作。

2)阅读 ifup 的手册页其中说:

ifup 和 ifdown 命令可用于根据文件 /etc/network/interfaces 中的接口定义来配置(或分别取消配置)网络接口。

my/etc/network/interfaces不包含有关 wpa_supplicant 的任何配置。

相关内容