mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
This allows IPv6 to set up without IPv4 being up thus IPv6-only or IPv6+DS-Lite working with the default config. Signed-off-by: Steven Barth <steven@midlink.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42848 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
469 B
Plaintext
26 lines
469 B
Plaintext
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
config interface loopback
|
|
option ifname lo
|
|
option proto static
|
|
option ipaddr 127.0.0.1
|
|
option netmask 255.0.0.0
|
|
|
|
config interface wan
|
|
option ifname eth0
|
|
option proto dhcp
|
|
|
|
config interface lan
|
|
option ifname eth2
|
|
option proto static
|
|
option ipaddr 192.168.1.1
|
|
option netmask 255.255.255.0
|
|
option ip6assign 60
|
|
|
|
config interface wan6
|
|
option ifname eth0
|
|
option proto dhcpv6
|
|
|
|
config globals globals
|
|
option ula_prefix auto
|