밤(23시부터 8시)에 Raspberry Pi의 네트워크를 종료하기 위해 cron을 설정하려고 합니다.
문제는 다음 명령 중 어느 것도 작업을 수행하지 않는다는 것입니다.
$ sudo service networking stop
$ sudo ifconfig eth0 down
$ sudo ifdown eth0
출력에서 명령은 작동하는 것처럼 보이지만 인터페이스는 여전히 유효합니다(할 수 있고 ping 8.8.8.8
존재합니다 ifconfig
).
내용은 이렇습니다/etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
auto wlan1
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
ifconfig
(마스크된 MAC) 출력
eth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.102 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1545 errors:0 dropped:0 overruns:0 frame:0
TX packets:1054 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:117138 (114.3 KiB) TX bytes:156391 (152.7 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1104 (1.0 KiB) TX bytes:1104 (1.0 KiB)
산출route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 202 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 202 0 0 eth0
도움이 필요하세요?
답변1
묻고 해결하기네트워크를 끌 수 없습니다.
# service ifplugd stop && ifconfig eth0 down
존재하다cron
, 추가하여sudo crontab -e
0 23 * * * /usr/sbin/service ifplugd stop && /sbin/ifconfig eth0 down
0 8 * * * /usr/sbin/service ifplugd start && /sbin/ifconfig eth0 up