enable start-stop-daemon by default, i want to use this to clean up a few init script...
[openwrt/staging/mkresin.git] / target / linux / ar7-2.6 / base-files / default / etc / config / network
1 # Copyright (C) 2006 OpenWrt.org
2
3 config interface loopback
4 option ifname lo
5 option proto static
6 option ipaddr 127.0.0.1
7 option netmask 255.0.0.0
8
9 config interface lan
10 option ifname eth0
11 option proto static
12 option ipaddr 192.168.1.1
13 option netmask 255.255.255.0
14
15
16
17 ## Example for ATM bridging.
18 ## Useful for PPPoE or IP over ATM. Will create 'nas${unit}'
19 #
20 # config atm-bridge
21 # option unit 0
22 # option encaps llc
23 # option vpi 8
24 # option vci 35
25
26
27 # config interface wan
28 ## PPPoE:
29 # option ifname nas0
30 # option proto pppoe
31
32 ## PPPoA:
33 # option ifname atm0
34 # option proto pppoa
35 # option encaps llc
36 # option vpi 8
37 # option vci 35
38
39 ## Both:
40 # option username "my_username"
41 # option password "my_password"