Juniper EX系列交换机端口配置操作

配置物理端口参数

user@host#set interface ge-slot/pic/port decription description

#配置端口描述

user@host#set interface ge-slot/pic/port mtu mtu-number

#配置端口MTU

user@host#set interface ge-slot/pic/port ether-options speed (10m | 100m | 1g)

#配置端口速率

user@host#set interface ge-slot/pic/port ether-options link-mode (automatic | full-duplex | half-duplex )

#配置端口双工

user@host#set interface ge-slot/pic/port ether-options (auto-negotiation | no-auto-negotiation )

#配置端口自动协商

Example: 

root@host> edit

Entering configuration mode

[edit]

root@host# set interfaces ge-3/0/0 description “to_BJ-4200-1”

[edit]

root@host# set interfaces ge-3/0/0 mtu 9216

[edit]

root@host# set interfaces ge-3/0/0 ether-options speed 1g

[edit]

root@host# set interfaces ge-3/0/0 ether-options link-mode full-duplex

[edit]

root@host# set interfaces ge-3/0/0 ether-options auto-negotiation

[edit]

root@host# commit

配置物理端口二层接口

[edit]

root@host# set interfaces ge-0/0/16 unit 0 family ethernet-switching port-mode access

#配置物理端口作为二层access模式的接口,端口默认情况下就是二层access端口。

[edit]

user@host # show interfaces

ge-0/0/16 {

    unit 0 {

        family ethernet-switching;

    }

}

配置物理端口三层接口

EX交换机物理接口可以支持三层路由接口功能,直接可以在接口上配置三层地址

[edit]

root@host# set interfaces ge-0/0/17 unit 0 family inet address 192.168.20.1/24

查看配置

[edit]

user@host # show interfaces ge0/0/17                                        

unit 0 {

    family inet {

        address 192.168.20.1/24;

    }

}

你可能感兴趣的:(网络数通,网络,运维)