summaryrefslogtreecommitdiffstats
path: root/examples/ethernet-iproute
blob: 16d88b531c07a1c6f8a05cccfe2575bffa3e0806 (plain)
1
2
3
4
5
6
7
CONNECTION="ethernet"
DESCRIPTION="A more versatile static ethernet connection using iproute"
INTERFACE="eth0"
IP="static"
# Any valid iproute command can be placed in this array
IPCFG=("addr add dev eth0 192.168.1.23/24 brd +" "route add default via 192.168.1.1") 
DNS=("192.168.1.1")