Skip to content

Instantly share code, notes, and snippets.

@zman0900
Last active August 11, 2019 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zman0900/4778f9a90ee28ef1b07348eb93b6ef53 to your computer and use it in GitHub Desktop.
Save zman0900/4778f9a90ee28ef1b07348eb93b6ef53 to your computer and use it in GitHub Desktop.
Add ULA address to pfsense LAN
# 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