8 lines
130 B
Bash
Executable file
8 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
# Use the lan instead of the wlan
|
|
|
|
wpa_cli terminate
|
|
killall vpnc
|
|
ip l s wlan0 down
|
|
ip l s eth0 up
|
|
udhcpc -nfqi eth0
|