IPv6 Route: Membuang IPv6 Route melalui sebuah interface

From OnnoWiki
Revision as of 11:10, 22 May 2013 by Onnowpurbo (talk | contribs) (New page: 7.5. Removing an IPv6 route through an interface Not so often needed to use by hand, configuration scripts will use such on shutdown. 7.5.1. Using "ip" Usage: # /sbin/ip -6 route del <i...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

7.5. Removing an IPv6 route through an interface

Not so often needed to use by hand, configuration scripts will use such on shutdown. 7.5.1. Using "ip"

Usage:

  1. /sbin/ip -6 route del <ipv6network>/<prefixlength> dev <device>

Example:

  1. /sbin/ip -6 route del 2000::/3 dev eth0

7.5.2. Using "route"

Usage:

  1. /sbin/route -A inet6 del <network>/<prefixlength> dev <device>

Example:

  1. /sbin/route -A inet6 del 2000::/3 dev eth0