wifi
wifi
restart wifi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
ifconfig enp0s20f0u14 down
ifconfig enp0s20f0u13 down
echo "downed"
ifconfig enp0s20f0u14 up
ifconfig enp0s20f0u13 up
echo "uped"
dhclient enp0s20f0u14
dhclient enp0s20f0u13
echo "cliented"
route del default gw 10.61.64.1
sleep 1
route add default gw 192.168.0.1
sleep 1
复制成功
This post is licensed under CC BY 4.0 by the author.