aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/base-files
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-04-09 08:03:08 +0000
committerSteven Barth <steven@midlink.org>2013-04-09 08:03:08 +0000
commit4c9003ffc74ee9c70ca54240e5ec77fbab2ad9ce (patch)
treea166641971bf319b21ee3b34daec10094b49e94d /target/linux/ar7/base-files
parentd60417f6ef256793248e9bcf485da7d2c46cefdc (diff)
downloadmaster-187ad058-4c9003ffc74ee9c70ca54240e5ec77fbab2ad9ce.tar.gz
master-187ad058-4c9003ffc74ee9c70ca54240e5ec77fbab2ad9ce.tar.bz2
master-187ad058-4c9003ffc74ee9c70ca54240e5ec77fbab2ad9ce.zip
Adapt default network configuration for IPv6
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36278 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/base-files')
-rw-r--r--target/linux/ar7/base-files/etc/config/network8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/ar7/base-files/etc/config/network b/target/linux/ar7/base-files/etc/config/network
index 0576aa437b..50a1edfb47 100644
--- a/target/linux/ar7/base-files/etc/config/network
+++ b/target/linux/ar7/base-files/etc/config/network
@@ -13,6 +13,14 @@ config interface lan
option ipaddr 192.168.1.1
option netmask 255.255.255.0
option nat 1
+ option ip6assign 64
+
+config interface wan6
+ option ifname @wan
+ option proto dhcpv6
+
+config globals globals
+ option ula_prefix auto
## Example for ATM bridging.
## Useful for PPPoE or IP over ATM. Will create 'nas${unit}'
> 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254