diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-24 15:53:10 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-24 15:53:20 +0200 |
commit | fd124a0cff6170c8474166a33b0591d490a32bdb (patch) | |
tree | 3a2bc8da14b5e3602483a121b111b55e50e6b73f /package/base-files/files/interfaces-dhcp | |
parent | 7f0da41a6132598996d8aa8a694c86200702588f (diff) |
add new symbol for systems with tcp/ip but without netdevice. like arc simulator running test-suites with network functions
Diffstat (limited to 'package/base-files/files/interfaces-dhcp')
-rw-r--r-- | package/base-files/files/interfaces-dhcp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/package/base-files/files/interfaces-dhcp b/package/base-files/files/interfaces-dhcp new file mode 100644 index 000000000..11174c152 --- /dev/null +++ b/package/base-files/files/interfaces-dhcp @@ -0,0 +1,58 @@ +auto lo +iface lo inet loopback + +auto eth0 +iface eth0 inet dhcp + +## static network configuration +#auto eth0 +#iface eth0 inet static +# address 192.168.1.1 +# netmask 255.255.255.0 +# broadcast + +# gateway 192.168.1.254 +## + +## bridge configuration +#auto br0 +#iface br0 inet static +# address 192.168.99.1 +# netmask 255.255.255.0 +# broadcast + +# bridge-ports eth0 eth1 +## + +## pppoe configuration +#auto ppp0 +#iface ppp0 inet ppp +# use-template pppoe +# provider isp +# ppp-mtu 1412 +# ppp-username foo +# ppp-password bar +# ppp-device eth1 +## + +## wireless client configuration +#auto wlan0 +#iface wlan0 inet dhcp +# wireless-ssid myap +# wireless-mode sta +# wireless-security wpa2 +# wireless-passphrase xxxxxx +## + +## wireless accesspoint configuration +#auto wlan0 +#iface wlan0 inet static +# address 192.168.40.10 +# netmask 255.255.255.0 +# broadcast + +# wireless-ssid myap +# wireless-mode ap +# wireless-channel 8 +# wireless-security wpa2 +# wireless-passphrase xxxxxxxx +## + +# for more special cases see: http://www.openadk.org/doku.php?id=network |