zoukankan      html  css  js  c++  java
  • 神州数码DEIGRP路由协议配置

    实验要求:了解DEIGRP及其配置方法

    拓扑如下

    R1  

    enable  进入特权模式

    config  进入全局模式

    hostname R1  修改名称

    interface l0  进入端口

    ip address 192.168.3.254 255.255.255.0  设置IP地址

    interface s0/1  进入端口

    ip address 192.168.1.1 255.255.255.0    设置IP地址

    physical-layer speed 64000  设置同步时钟

    exit  返回上一级

    router beigrp 100  启动BEIGRP协议

    network 192.168.1.0 255.255.255.0  添加直连网段到BEIGRP

    network 192.168.3.0 255.255.255.0  添加直连网段到BEIGRP

     

    R2

    enable  进入特权模式

    config  进入全局模式

    hostname R2  修改名称

    interface s0/2  进入端口

    ip address 192.168.1.2 255.255.255.0  设置IP地址

    physical-layer speed 64000  设置同步时钟

    interface s0/1  进入端口

    ip address 192.168.2.1 255.255.255.0  设置IP地址

    physical-layer speed 64000  设置同步时钟

    exit  返回上一级

    router beigrp 100  启动BEIGRP协议

    network 192.168.1.0 255.255.255.0  添加直连网段到BEIGRP

    network 192.168.2.0 255.255.255.0  添加直连网段到BEIGRP

     

    R3

    enable  进入特权模式

    config  进入全局模式

    hostname R3  修改名称

    interface s0/2  进入端口

    ip address 192.168.2.2 255.255.255.0  设置IP地址

    physical-layer speed 64000  设置同步时钟

    interface l0  进入端口

    ip address 192.168.4.254 255.255.255.0  设置IP地址

    exit  返回上一级

    router beigrp 100  启动BEIGP协议

    network 192.168.2.0 255.255.255.0  添加直连网段到BEIGRP

    network 192.168.4.0 255.255.255.0  添加直连网段到BEIGRP

     

    相关命令

    router beigrp [自治系统ID]   启动beigrp协议

  • 相关阅读:
    C/C++内存管理 笔记
    RAII惯用法:C++资源管理的利器
    JS、Flash 实现复制功能 (浏览器兼容)
    JS页面刷新实现方法总结
    php 一些常用的语句
    使用ZeroClipboard解决跨浏览器复制到剪贴板的问题
    window.opener.location.reload() and href()的区别 弹出页修改后刷新父窗体
    查看Mysql数据库大小
    JQUERY操作集锦
    十进制正整数转换成六十二进制
  • 原文地址:https://www.cnblogs.com/guoshiyu/p/9324030.html
Copyright © 2011-2022 走看看