Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/sh
INTERFACE_FUNK="ath0"
INTERFACE_FEST="fxp0"
route delete default
route delete 10/24
killall dhclient
sleep 3
killall -kill dhclient
if [ "$1" = "funk-home" ]; then
ifconfig ${INTERFACE_FEST} down
ifconfig ${INTERFACE_FUNK} up
ifconfig ath0 ssid DA-BUTZE-I wepmode on channel 1 wepkey blabla
dhclient ${INTERFACE_FUNK}
fi
if [ "$1" = "fest" ]; then
ifconfig ${INTERFACE_FUNK} down
ifconfig ${INTERFACE_FEST} up
dhclient ${INTERFACE_FEST}
fi
We use essential cookies to make this site work, and optional cookies to enhance your experience.