Last active
August 11, 2019 06:24
-
-
Save zman0900/4778f9a90ee28ef1b07348eb93b6ef53 to your computer and use it in GitHub Desktop.
Add ULA address to pfsense LAN
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put in /usr/local/etc/devd/interfaces.conf | |
# Adds ULA address later - using VIP feature breaks RA of prefix delegated from WAN. | |
# Based on https://web.archive.org/web/20190811062325/https://old.reddit.com/r/PFSENSE/comments/97b5zj/ipv6_isp_assigned_prefixes_how_to_assign_ip/ | |
notify 1 { | |
match "system" "IFNET"; | |
match "subsystem" "igb1"; | |
match "type" "LINK_UP"; | |
action "/sbin/ifconfig igb1 inet6 fd00::1 prefixlen 64 alias"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment