ENSP基本命令

设置系统时间和所在地区

[HUAWEI]clock datetime 12:00:00 2022-10-18      //设置系统时间

[HUAWEI]clock timezone BJ add 08:00:00            //设置时区

[HUAWEI]display clock                                          //查看系统时间

2022-10-18 07:50:07+8:00

Thursday

Time Zone(BJ)  : UTC+08:00

设置语言模式

[HUAWEI]language-mode Chinese

Change language mode,confirm? [Y/N] Y

提示:改变语言模式成功

IP地址设置 

PC端设置IP地址:直接双击进行配置

路由器设置IP地址

[HUAWEI]int e0/0/0

[HUAWEI-Ethernet0/0/0]ip add 192.168.1.0 24

//192.168.1.0为IP地址 24为子网掩码的简写

交换机设置IP 

  1. 进入vlan :int vl10
  2. 设置IP地址:ip add 192.168.1.0 24
  3. 进入端口:int g0/0/1
  4. 设置端口模式:port link-type access  //设置为accesss端口,access端口只允许一个vlan通过。
  5.  port default vl 10

静态路由

[HUAWEI] ip route-static 192.168.2.0 255.255.255.0  0.0.02 

192.168.2.0为目标网段,255.255.255.0为子网掩码,0.0.0.2为下一跳路由器地址。

静态路由应用于非直连状态

动态路由(适用于大型网络)

RIP

  1. 进入RIP:rip
  2. network+直连网段

OSPF

  1.  进入ospf:ospf
  2. area 0 //0为配置区域,0为骨干区域,非0为非骨干区域,非骨干区域需要和骨干区域相连
  3. network 1.1.1.0  0.0.255   //1.1.1.0为直连网段 0.0.0.255为反子网掩码

单臂路由(实现vlan之间能够互联) 

路由器

  1. 进入子接口:int g0/0/1
  2. 配置IP: ip address 192.168.1.254
  3. 封装: dotlq termination vid 10
  4. 开启广播功能:arp broadcast enable  //如果不配置,子接口无法主动发送arp报文,以及向外转发arp报文

交换机

  1. 创建vlan:vl bat 10
  2. 进入端口:int g0/0/1
  3. 分配端口:port link-type access     port default vlan 10                                                  access用于交换机与PC端间 只允许配置vl通过 trunk允许所有vl通过
  4. trunk:port link-type trunk   port trunk allow-pass vlan all 

配置网关

  1. 进入子接口:int g0/0/1
  2. 配置IP:ip address 192.168.2.254 24
  3. 封装:dotlg termination vid 10  

密码模式

  1. console口需要使用CTL线
  2. 进入路由器
  3. 进入console 口:user-interface console 0
  4. 设置简单密码模式:authentication-mode password
  5. 选择方式:set authentication password cipher  密码                                                       user privilege lavel 3  其中3为用户级别
  1. 使用copper线连接
  2. user-interface vty 0 4 //进入vty0到4接口
  3. authentication-mode password 然后输入密码
  4. user privilege level 1 设置级别 

AAA(比密码模式多了一个用户名 在路由器配置)

  1. 使用console口 
     
  2. user-interface console 0
  3. authentication-mode aaa
  4. 返回上一级进入aaa  (aaa)
  5. local-user 用户名 password ciphet 密码
  6. local-user 用户名 privilege level 3 

DHCP:主机动态获取IP地址

  1. 在路由器配置
  2. 开启DHCP:dhcp enable 
  3. 创建一个全局地址池:ip pool 地址池名称
  4. network 192.168.4.0 mask 255.255.255.0                                                                       动态分配192.168.1.0地址范围,如不指定掩码,则默认使用自然掩码
  5. lease day 2 全局地址池写的地址租期,默认为1天
  6. gateway-list 192.168.4.254 配置DHCP客户端的网关地址
  7. 添加排斥地址:excluded-ip-address 192.168.4.250 192.168.4.253
  8. 定义dns网关:dns-list 8.8.8.8
  9. 进入端口:interface g0/0/0
  10. // 11.12为方法二
  11. 定义网关:ip add 192.168.1.254
  12. 开启接口DHCP功能:dhcp select global                                                                          指定接口采用全局地址池为客户端配置

 链路聚合

  1. 在交换机配置
  2. Eth-Trunk模式(手工)
  3. 创建链路聚合:interface Eth-Trunnk 1
  4. 指定为手工负载分担模式:mode manualload-balance
  5. 进入端口:interface g0/0/0
  6. 加入到Eth-Trunk1接口:eth-trunk 1

你可能感兴趣的:(tcp/ip,rpc,网络协议)