首页 > 其他分享 >IPV6 STATIC

IPV6 STATIC

时间:2023-10-19 17:03:45浏览次数:29  
标签:default IPV6 2001 STATIC user ipv6 interface local

IPV6 STATIC_Standard

命令分析

IPV6 ROUTE-STATIC 目的地址 子网掩码 接口地址 下一跳地址

核心配置

R1:

ipv6 route-static 2001:8:: 64 2001:10::2

R2:

ipv6 route-static 2001:9:: 64 2001:10::1 

全部配置

R1

<r1>display current-configuration  

[V200R003C00]

#

sysname r1

#

snmp-agent local-engineid 800007DB03000000000000

snmp-agent  

#

clock timezone China-Standard-Time minus 08:00:00

#

portal local-server load portalpage.zip

#

drop illegal-mac alarm

#

ipv6  

#

set cpu-usage threshold 80 restore 75

#

aaa  

authentication-scheme default

authorization-scheme default

accounting-scheme default

domain default  

domain default_admin  

local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$

local-user admin service-type http

#

firewall zone Local

priority 15

#

interface GigabitEthernet0/0/0

ipv6 enable  

ipv6 address 2001:9::1/64  

ipv6 address auto link-local

#

interface GigabitEthernet0/0/1

ipv6 enable  

ipv6 address 2001:10::1/64  

ipv6 address auto link-local

#

interface GigabitEthernet0/0/2

#

interface NULL0

#

ipv6 route-static 2001:8:: 64 2001:10::2  

#

user-interface con 0

authentication-mode password

user-interface vty 0 4

user-interface vty 16 20

#

wlan ac

#

return

<r1>

R2:

<r2>display current-configuration  

[V200R003C00]

#

sysname r2

#

snmp-agent local-engineid 800007DB03000000000000

snmp-agent  

#

clock timezone China-Standard-Time minus 08:00:00

#

portal local-server load portalpage.zip

#

drop illegal-mac alarm

#

ipv6  

#

set cpu-usage threshold 80 restore 75

#

aaa  

authentication-scheme default

authorization-scheme default

accounting-scheme default

domain default  

domain default_admin  

local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$

local-user admin service-type http

#

firewall zone Local

priority 15

#

interface GigabitEthernet0/0/0

ipv6 enable  

ipv6 address 2001:8::1/64  

ipv6 address auto link-local

#

interface GigabitEthernet0/0/1

ipv6 enable  

ipv6 address 2001:10::2/64  

ipv6 address auto link-local

#

interface GigabitEthernet0/0/2

#

interface NULL0

#

ipv6 route-static 2001:9:: 64 2001:10::1  

#

user-interface con 0

authentication-mode password

user-interface vty 0 4

user-interface vty 16 20

#

wlan ac

#

return

<r2>

原理

IPV6 STATIC_ci_02

标签:default,IPV6,2001,STATIC,user,ipv6,interface,local
From: https://blog.51cto.com/u_13560030/7940797

相关文章

  • Program does not contain a static 'Main' method suitable for an entry point
    http://www.kangry.net/blog/?article_id=391&type=article修改办法,对着项目右键-》属性-》application-》outputtype设为ClassLibrary即可。  ......
  • Go - Serving Static Files
    Problem: Youwanttoservestaticfilessuchasimages,CSS,andJavaScriptfiles.Solution: Usethehttp.FileServerfunctiontoservestaticfiles. funcmain(){dir:=http.Dir("./static")fs:=http.FileS......
  • Java语言用static修饰符进行静态导入的作用和语法
    大力:“Java语言引入了静态导入语法(importstatic),有什么作用?”卫琴:“能够在需要经常访问同一个类的方法或成员变量的场合,简化程序代码。”static修饰符静态导入可以简化程序代码下面是一个未使用静态导入的例子:classTestStatic{publicstaticvoidmain(String[]args){S......
  • C语言数据类型占用字节大小+rand_mode/randomize_mode/static constraint+I2C和SPI的
    C语言数据类型占用字节大小https://blog.csdn.net/sinan1995/article/details/79577106对于整形,最大8字节,超出8字节的计算,要么用库,要么不用。64位编译器:char/unsignedchar:1字节char*:8字节shortint:2字节int/unsignedint:4字节longint:8字节float:4字节double:8字节lon......
  • Linux配置IPv6地址跨网段互通
    Linux配置ipv6地址及跨网段通信目录:目录IPv6网络配置3ipv6地址配置3规划3VM1地址配置3VM2地址配置3VM3地址配置4测试三台vm的通信4ipv6-VM跨网段通信4配置VM1地址5配置R1路由地址6配置R2路由地址6配置VM2地址6配置路由转发7配置R17配置R27测试8VM1pingVM28IPv6......
  • IPV6-NDP
    配置R1:<r1>displaycurrent-configuration [V200R003C00]#sysnamer1#snmp-agentlocal-engineid800007DB03000000000000snmp-agent #clocktimezoneChina-Standard-Timeminus08:00:00#portallocal-serverloadportalpage.zip#dropillegal-maca......
  • IPV6-邻居状态迁移
    IPV6邻居状态ipv6节点需要维护一张邻居表,每个邻居都有相应的状态、状态之间可以迁移。Incomplete:邻居不可达。正在进行地址解析,邻居的链路层地址未探测(ns/na)到,如果解析成功,则进入reachable状态reachable:邻居可达。表示在规定时间(邻居可达时间,缺省情况下是30M秒)内邻居可达。如果超过......
  • 类里面静态方法(@staticmethod),类方法(@classmethod)和实例方法(self)的使用与区别
    前言python类里面常用的方法有3个:静态方法(@staticmethod),类方法(@classmethod)和实例方法(self)本篇讲解这3种方法在使用上有什么区别。函数先从函数说起,方法跟函数是有区别的,经常有人容易混淆,函数定义是def关键字定义(外面没class)deffun():a="hello"returna#......
  • static 特点2 多了一种调用方式 不需要实例化,可以直接类名调用
    效果1  实例化后被调用 效果2 ......
  • Vmware虚拟机桥接到无线网卡,Ubuntu22.04中无法显示IPv4地址,IPv6地址可以获取,但无法上
    环境Win11电脑,Vmware17.01,Ubuntu22.04虚拟机,Windowsserver2003虚拟机问题:在使用桥接模式时,选桥接到无线网卡,Ubuntu22.04/WindowsServer2003虚拟机中无法获取IPv4地址,IPv6地址可以获取,但无法上网。解决办法:网上查了查了下,挺多人遇到这个问题,解决办法1)把桥接设置的自动,改......