################## # General Config # ################## #general configuration options dns_servers=( "208.67.222.222 208.67.220.220" ) dhcp="nodns nontp nonis" ######## # eth0 # ######## # Prefer ifconfig over iproute2 (if both are installed) modules_eth0=( "ifconfig" ) # You can also specify other modules for an interface -- In this case we prefer udhcpc over dhcpcd #modules_eth0=( "udhcpc" ) # You can also specify which modules not to use - for example you may be # using a supplicant or linux-wlan-ng to control wireless configuration but # you still want to configure network settings per ESSID associated with. modules_eth0=( "!iwconfig" "!wpa_supplicant" ) # IMPORTANT: If you need the above, please disable modules in that order ################################ # Enable arping (profiles)mode # ################################ config_eth0=( "arping" ) #Define the gateways(profiles) for which to configure (separated by a space) gateways_eth0="192.168.1.1,00:12:17:05:6F:B0" ####HOME profile#### config_192168001001_001217056FB0=( "192.168.1.201/24" ) routes_192168001001_001217056FB0=( "default via 192.168.1.1" ) #dns_servers_192168001001_001217056FB0=( "192.168.1.1" ) ####DEFAULT profile#### fallback_eth0=( "dhcp" )