IPV6地址理解及配置



理解:

IPv6单播地址的类型可有多种,包括全球单播地址、链路本地地址和站点本地地址等。

1. 全球单播地址等同于IPv4公网地址,提供给网络服务提供商。

这种类型的地址允许路由前缀的聚合,从而限制了全球路由表项的数量。

2. 链路本地地址用于邻居发现协议和无状态自动配置中链路本地上节点

之间的通信。使用链路本地地址作为源或目的地址的数据报文不会被转发

到其他链路上。

3. 站点本地地址与IPv4中的私有地址类似。使用站点本地地址作为源或目

的地址的数据报文不会被转发到本站点(相当于一个私有网络)外的其它站点。

地址类型格式前缀(二进制)IPv6前缀标识单播地址未指定地址00...0

(128 bits)::/128环回地址00...1  (128 bits)::1/128

链路本地地址1111111010FE80::/10

站点本地地址1111111011FEC0::/10

全球单播地址其他形式-组播地址11111111FF00::/8

任播地址从单播地址空间中进行分配,使用单播地址的格式

配置ipv6地址:(环境:ENSP)

第一步:启动ipv6功能(系统模式):ipv6

第二步:在接口模式下启动ipv6功能:ipv6 enable

//手动配置ipv6链路本地地址

接口模式:ipv6 address FE80::1 link-local

//自动配置ipv6链路本地地址

接口模式:ipv6 address auto link-local

//手动配置ipv6全球单播地址

接口模式:ipv6 address 2001::1/64

//在指定前缀(网络号)的前提下自动配置接口模式

接口模式:ipv6 address 2001::/64 eui-64  (满足EUI-64标准)

配置实例:

R1配置:

[Huawei]display  current-configuration

#

sysname Huawei

#

ipv6

#

aaa

authentication-scheme default

authorization-scheme default

accounting-scheme default

domain default

domain default_admin

local-user admin password cipher OOCM4m($F4ajUn1vMEIBNUw#

local-user admin service-type http

#

firewall zone Local

priority 16

#

interface Ethernet0/0/0

ipv6 enable

ipv6 address FE80::1 link-local

#

interface Ethernet0/0/1

ipv6 enable

ipv6 address 2001::1/64

#

interface Serial0/0/0

link-protocol ppp

#

interface Serial0/0/1

link-protocol ppp

#

interface Serial0/0/2

link-protocol ppp

#

interface Serial0/0/3

link-protocol ppp

#

interface GigabitEthernet0/0/0

#

interface GigabitEthernet0/0/1

#

interface GigabitEthernet0/0/2

#

interface GigabitEthernet0/0/3

#

wlan

#

interface NULL0

#

user-interface con 0

user-interface vty 0 4

user-interface vty 16 20

#

return

R2配置:

[Huawei]display cu

[Huawei]display current-configuration

#

sysname Huawei

#

ipv6

#

aaa

authentication-scheme default

authorization-scheme default

accounting-scheme default

domain default

domain default_admin

local-user admin password cipher OOCM4m($F4ajUn1vMEIBNUw#

local-user admin service-type http

#

firewall zone Local

priority 16

#

interface Ethernet0/0/0

ipv6 enable

ipv6 address auto link-local

#

interface Ethernet0/0/1

#

interface Serial0/0/0

link-protocol ppp

#

interface Serial0/0/1

link-protocol ppp

#

interface Serial0/0/2

link-protocol ppp

#

interface Serial0/0/3

link-protocol ppp

#

interface GigabitEthernet0/0/0

#

interface GigabitEthernet0/0/1

#

interface GigabitEthernet0/0/2

#

interface GigabitEthernet0/0/3

#

wlan

#

interface NULL0

#

user-interface con 0

user-interface vty 0 4

user-interface vty 16 20

#

return

R3配置:

[Huawei]display current-configuration

#

sysname Huawei

#

ipv6

#

aaa

authentication-scheme default

authorization-scheme default

accounting-scheme default

domain default

domain default_admin

local-user admin password cipher OOCM4m($F4ajUn1vMEIBNUw#

local-user admin service-type http

#

firewall zone Local

priority 16

#

interface Ethernet0/0/0

ipv6 enable

ipv6 address 2001::/64 eui-64

#

interface Ethernet0/0/1

#

interface Serial0/0/0

link-protocol ppp

#

interface Serial0/0/1

link-protocol ppp

#

interface Serial0/0/2

link-protocol ppp

#

interface Serial0/0/3

link-protocol ppp

#

interface GigabitEthernet0/0/0

#

interface GigabitEthernet0/0/1

#

interface GigabitEthernet0/0/2

#

interface GigabitEthernet0/0/3

#

wlan

#

interface NULL0

#

user-interface con 0

user-interface vty 0 4

user-interface vty 16 20

#

return

[Huawei]

分别在R1的E0/0/0抓包结果:

在R1 E0/0/1抓包结果:

通过上面的抓包结果和各个接口的mac地址对比,我们可以看出:凡事通过自动获取的ipv6地址(包括链路本地地址、全球单播地址)都是符合EUI-64标准。

时间: 2024-10-06 00:53:27

IPV6地址理解及配置的相关文章

第11章 拾遗4:IPv6(2)_给计算机配置IPv6地址

4. 给计算机配置IPv6地址 4.1 无状态自动配置IPv6地址 (1)网络拓扑 ①无状态地址自动配置是指不需要DHCP服务器进行管理,由客户端向路由器发送前缀请求(RS)询问其所在网段.路由器收到RS后,会发送前缀公告消息(RA),客户端根据网络RA并自己的MAC地址计算出IPv6地址 ②注意:RA公告不支持DNS分发,所以客户端只能得到IPv6地址,而得不到DNS服务器地址等额外信息. (2)路由器配置 R2#conf t R2(config)#ipv6 unicast-routing /

刚刚研究了下ipv6,尝试配置内网VPS的IPv6地址

刚刚研究了下ipv6,尝试配置内网VPS的IPv6地址是3台设备,分别是客户机Windows系统.核心交换机.PPPoE拨号的路由器 第一步:在PPPoE拨号的路由器上面查看ppp0拨号的地址 ifconfig ppp0 1:发现是[240e:f2:10:49b3]开头的所以就执行 ifconfig eth0 inet6 add 240e:f2:10:49b3::20a/124 2:然后是路由转发 ip route replace 240e:f2:10:49b3::300/120 via 240

全面分析RHCE7(红帽认证工程师)考试题目之 ----配置IPv6地址,配置聚合连接篇

配置聚合连接(网卡绑定) team ,聚合连接(也称为链路聚合) 由多块网卡一起组建而成的虚拟网卡 作用1:轮询式(roundrobin)的流量负载均衡 作用2:热备份(activebackup)连接冗余 热备份配置: {"runner": {"name": "activebackup"}} man帮助辅助记忆 /example    #全文查找example #按n 跳转到下一个匹配 找到热备份配置 粘贴 一.添加team团队设备 [[emai

申请IPV6地址配置IPV6域名

0. 前言 最近弄了一下IPV6,虽然不知道什么时候会用到,但是服务器支持IPV6,还是有必要的. 1. 申请IPV6地址 https://tunnelbroker.net/ 到这个网址去注册一个帐号,然后创建一个隧道.第一次打开这个页面,一股80.90年代的网站风格.注册时邮箱要写合法邮箱,要收验证码的. 然后查看Tunnel信息 按照提示配置好ECS服务器网卡信息 2. 配置阿里云ECS主机 配置到服务器上 修改ECS服务器的一些IPV6设置,因为默认阿里云上的云主机是关闭IPV6的配置的.

IPV6技术系列②——IPv6地址配置

IPv6简介 IPv6即 Internet Protocol Version 6,为IP协议的下一代版本.IPv6是IETF(互联网工程任务组,Internet Engineering Task Force)设计的用于替代目前广泛使用的IPv4的下一代IP协议,有着"可以为世界每一粒沙子分配一个网址"的盛名.由于IPv4在网络地址范围极为有限,严重限制了互联网的应用和发展.这种矛盾在5G.物联网等新兴技术即将流行的今天尤为突出.而IPv6的使用,不仅能解决网络地址资源短缺的问题,同时也

IPv6系列-彻底弄明白有状态与无状态配置IPv6地址

深入研究自动分配IPv6地址的Stateless(无状态)与Stateful(有状态)方式 小慢哥的原创文章,欢迎转载 目录 ? 一. Link-Local Address的生成方式 ? 二. Global Address的生成方式 ? 三. RA报文中3个关键的Flag ? 四. 流程示意图 ? 五. 测试获得IP效果 ? 六. 应用场景(选择无状态还是有状态) ? 七. 后续内容 ? 附. 参考文档 一. Link-Local Address的生成方式 生成"链路本地地址",有2种

Linux IPv6 地址配置

添加IPV6地址ip -6 addr add <ipv6address>/<prefixlength> dev <interface>ip -6 addr add 2001:0db8:0:f101::1/64 dev eth0 ifconfig <interface> inet6 add <ipv6address>/<prefixlength>ifconfig eth0 inet6 add 2001:0db8:0:f101::1/64

【Atheros】pktgen的ipv6地址处理函数参考及ipv6基本知识

pktgen有很多函数可以作为很好的网络相关的工具函数,这里列出ipv6中1:0:0:0:0:0:0:1和1::1这两种地址形式相互转化的工具函数. 第一个函数,用于把一个1:0:0:0:0:0:0:1形式的地址转化为1::1 /* * scan_ip6, fmt_ip taken from dietlibc-0.21 * Author Felix von Leitner <[email protected]> * * Slightly modified for kernel. * Shoul

IPv6地址介绍

  1. 认识IPv6地址 IPv4地址是类似 A.B.C.D 的格式,它是32位,用\".\"分成四段,用10进制表示:而IPv6地址类似X:X:X:X:X:X:X:X的格式,它是128位的,用\":\"分成8段,用16进制表示:可见,IPv6地址空间相对于IPv4地址有了极大的扩充. RFC2373 中详细定义了IPv6地址,按照定义,一个完整的IPv6地址的表示法:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx 例如: 2001