Created
July 21, 2016 02:05
-
-
Save digitalresistor/d2e7c8be335df2edb9ef9a3efbd713d4 to your computer and use it in GitHub Desktop.
Comcast dhcp6c config to pull a /60 prefix delegation
This file contains hidden or 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
interface sk1 { | |
send ia-pd 0; | |
send ia-pd 1; | |
send ia-na 1; | |
}; | |
id-assoc pd 0 { | |
prefix ::/64 infinity; | |
prefix-interface sk0 { | |
sla-id 0; | |
sla-len 0; | |
}; | |
}; | |
id-assoc pd 1 { | |
prefix ::/60 infinity; | |
prefix-interface vlan2 { | |
sla-id 1; | |
sla-len 4; | |
}; | |
prefix-interface vlan3 { | |
sla-id 2; | |
sla-len 4; | |
}; | |
}; | |
id-assoc na 1 { | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment