Skip to content

Instantly share code, notes, and snippets.

@drscream
Created March 23, 2015 19:18
Show Gist options
  • Save drscream/6f1760c795cf993ba5e8 to your computer and use it in GitHub Desktop.
Save drscream/6f1760c795cf993ba5e8 to your computer and use it in GitHub Desktop.
## Disable DAD for Solaris
## http://wiki.hetzner.de/index.php/Solaris_DAD
# IPv4
/sbin/ipadm set-prop -p _arp_probe_count=0 ip
/sbin/ipadm set-prop -p _arp_fastprobe_count=0 ip
/sbin/ipadm set-prop -p _arp_defend_interval=0 ip
# IPv6
/sbin/ipadm set-prop -p _dad_announce_interval=0 ipv4
/sbin/ipadm set-prop -p _dad_announce_interval=0 ipv6
/sbin/ipadm set-prop -p _ndp_defend_interval=0 ip
/sbin/ipadm set-prop -p _ndp_defend_rate=0 ip
# Result
/sbin/ipadm show-prop -p _arp_probe_count ip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment