Difference between revisions of "IPv6: Cisco: konfigurasi interface"

From OnnoWiki
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
  enable
 
  enable
 
  configure terminal
 
  configure terminal
 +
  ipv6 unicast-routing
 
   interface type number
 
   interface type number
 +
    ipv6 address ipv6-prefix /prefix-length
 
     ipv6 address ipv6-prefix /prefix-length eui-64
 
     ipv6 address ipv6-prefix /prefix-length eui-64
 
     ipv6 address ipv6-address / prefix-length link-local
 
     ipv6 address ipv6-address / prefix-length link-local
 
     ipv6 enable
 
     ipv6 enable
 +
    no shutdown
 
   exit
 
   exit
ipv6 unicast-routing
 
  
  
Line 14: Line 16:
 
  enable
 
  enable
 
  configure terminal
 
  configure terminal
 +
  ipv6 unicast-routing
 
   interface ethernet1/0
 
   interface ethernet1/0
     ipv6 address 2001:1::/64 eui-64
+
     ipv6 address 2001::1/64
 
     ipv6 enable
 
     ipv6 enable
     exit
+
     no shutdown
  ipv6 unicast-routing
 
 
   end
 
   end
  
  
Multiple IPv6 link-local addresses on an interface are not supported.  
+
Dual stack IPv4 & IPv6. Multiple IPv6 link-local addresses on an interface are not supported.  
  
 
  enable
 
  enable
 
  configure terminal
 
  configure terminal
 +
  ipv6 unicast-routing
 
   interface ethernet1/0
 
   interface ethernet1/0
 
     ip address 192.168.99.1 255.255.255.0
 
     ip address 192.168.99.1 255.255.255.0
 
     ipv6 address 2001:1:2:3:4::/64 eui-64
 
     ipv6 address 2001:1:2:3:4::/64 eui-64
 +
    no shutdown
 
     exit
 
     exit
  ipv6 unicast-routing
 
 
   end
 
   end
  
Line 39: Line 42:
 
  #
 
  #
 
  show ipv6 interface
 
  show ipv6 interface
  ping ipv6 2001:1:2:3:C801:35FF:FEB9:1C # dari hasil "show ipv6 interface"
+
  ping ipv6 2001::1
  
 
  show ipv6 access-list
 
  show ipv6 access-list
Line 56: Line 59:
  
 
==Pranala Menarik==
 
==Pranala Menarik==
 +
 +
* [[TCP/IP: Advanced Routing]]
 +
* [[Quagga]]
 +
* [[Mikrotik]]
 +
* [[Cisco]]
 +
* [[Juniper]]
 +
* [[BIRD: Routing]]
 +
* [[IPv6]]
  
 
* [[TCP/IP: Advanced Routing]]
 
* [[TCP/IP: Advanced Routing]]

Latest revision as of 16:16, 5 January 2019

enable
configure terminal
  ipv6 unicast-routing
  interface type number
    ipv6 address ipv6-prefix /prefix-length
    ipv6 address ipv6-prefix /prefix-length eui-64
    ipv6 address ipv6-address / prefix-length link-local
    ipv6 enable
    no shutdown
  exit


Contoh

enable
configure terminal
  ipv6 unicast-routing
  interface ethernet1/0
    ipv6 address 2001::1/64
    ipv6 enable
    no shutdown
  end


Dual stack IPv4 & IPv6. Multiple IPv6 link-local addresses on an interface are not supported.

enable
configure terminal
  ipv6 unicast-routing
  interface ethernet1/0
    ip address 192.168.99.1 255.255.255.0
    ipv6 address 2001:1:2:3:4::/64 eui-64
    no shutdown
    exit
  end


Cek

# cek ipv6 interface
#
show ipv6 interface
ping ipv6 2001::1
show ipv6 access-list
show ipv6 cef          # Cisco Express Forward
show ipv6 interface interface-id
show ipv6 mtu
show ipv6 neighbors
show ipv6 ospf
show ipv6 prefix-list
show ipv6 protocols
show ipv6 rip
show ipv6 route
show ipv6 routers
show ipv6 static
show ipv6 traffic

Pranala Menarik