Difference between revisions of "IPv6: Cisco: DHCP"

From OnnoWiki
Jump to navigation Jump to search
(Created page with " This example shows how to configure a pool called engineering with an IPv6 address prefix : configure terminal ipv6 dhcp pool engineering address prefix 2001:10...")
 
Line 31: Line 31:
 
       suboption 2 ascii "IP-Phone"
 
       suboption 2 ascii "IP-Phone"
 
       end
 
       end
 +
 +
 +
 +
==Pranala Menarik==
 +
 +
* [[TCP/IP: Advanced Routing]]
 +
* [[Quagga]]
 +
* [[Mikrotik]]
 +
* [[Cisco]]
 +
* [[Juniper]]
 +
* [[BIRD: Routing]]
 +
* [[IPv6]]

Revision as of 09:03, 5 January 2019



This example shows how to configure a pool called engineering with an IPv6 address prefix :

configure terminal
  ipv6 dhcp pool engineering
    address prefix 2001:1000::0/64
    end

This example shows how to configure a pool called testgroup with three link-addresses and an IPv6 address prefix:

configure terminal
  ipv6 dhcp pool testgroup
    link-address 2001:1001::0/64
    link-address 2001:1002::0/64
    link-address 2001:2000::0/48
    address prefix 2001:1003::0/64
    end

This example shows how to configure a pool called 350 with vendor-specific options:

configure terminal
  ipv6 dhcp pool 350
    address prefix 2001:1005::0/48
    vendor-specific 9
      suboption 1 address 1000:235D::1
      suboption 2 ascii "IP-Phone"
      end


Pranala Menarik