4g USB 모뎀과 함께 Raspbian을 사용할 때 때때로 네트워크가 다운되고 Raspbian을 다시 시작하지 않으면 복원할 수 없습니다.
이 경우에는 다음을 시도합니다.
service networking restart
매시간 cron을 실행하면 작동하지 않습니다.
나도 그렇게 해봤는데 ifdown -a && ifup -a
별로 나아지지 않았어.
문제는 터미널에서 이 명령을 실행해도 출력이 없다는 것입니다.
네트워크를 다시 시작할 수 있는 방법이 있나요?
root@raspberrypi:/home/pi# ifconfig -a
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.0.100 netmask 255.255.255.0 broadcast 192.168.0.255
inet6 fe80::48f5:e07c:1544:2d24 prefixlen 64 scopeid 0x20<link>
ether b8:27:eb:38:6e:29 txqueuelen 1000 (Ethernet)
RX packets 23902 bytes 8949877 (8.5 MiB)
RX errors 0 dropped 17 overruns 0 frame 0
TX packets 30039 bytes 6388288 (6.0 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1 (Boucle locale)
RX packets 20996 bytes 8495857 (8.1 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 20996 bytes 8495857 (8.1 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:27:eb:6d:3b:7c txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
답변1
Raspbian에서 작동하는 유일한 것은 다음과 같습니다.
sudo ifconfig wlan0 down && sleep 5 && sudo ifconfig wlan0 up