Last active
July 10, 2020 21:25
-
-
Save nomaster/def275fd7edcef43228cd6e5aae9828c to your computer and use it in GitHub Desktop.
Enable IPv6 on Cisco IOS
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
# logon to the device | |
enable | |
configure | |
sdm prefer dual-ipv4-and-ipv6 default | |
exit | |
reload | |
# logon again | |
enable | |
configure | |
interface vlan 1 | |
ipv6 enable | |
ipv6 address autoconfig | |
exit | |
exit | |
show ipv6 interface vlan 1 | |
# note address and write memory | |
write |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment