Ⅰ 思科时钟频率配置命令
设置时间及时区命令如下:
1.设置时区:Router(config)#CLOCK Timezone beijing +08 //设置为北京的时区为东8区
2.设置时间:Router# clock set 10:00:00 Aug 4 2015 //设置时间为2015年8月4日10时整
3.设置网络时间:Router(config)#ntp server s1b.time.e.cn //清华大学NTP服务器
由于路由器在交互时对时间的匹配要求严格,所以在配置路由器时不推荐使用手动设置时间, 我们一般借助专门的时间同步服务器来配置网络设备的时间。
Network Time Protocol(NTP)是用来使计兄团算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,
它可以提供高精准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议攻击。
NTP可以利用多个途径和来源的时间服务器来更加精确的校正时间。
现在绝大部分的操作系统都支持NTP,比凯纳如在Unix和Windows中都有他们自己的NTP服务。比如在Windows中的SNTP。
由于各个系统厂商会根据自己的系统情况对NTP来进行优化和设置,
更加适合他自己的系统,对于其他系统的兼容性就会差很多。还有不同时期的系统会使用不同版本的NTP服务。最新版本位V4,由于每个版本都要他自己的一些特征。
所以在设置NTP服务器时会有一些兼容性问题。
因此,在多类型操作系统的环境中,尽量使用NTP官方组织提供的软件进行设置而不使用其他厂商在盯尘没系统中默认提供的NTP服务器。NTP官方组织为
www.ntp.org。
Server一般用于服务器端,该服务器不会去同步其他服务器时间,一般server后可以跟 127.127.1.0 该地址代表本级的时钟,
如果Server后跟其他服务器IP,表示会去同步其他时间服务器的地址。
Ⅱ 交换机云管理三种配置模式区别
VLAN中继协议,VTP,VLAN TRUNKING PROTOCOL,是CISCO专用协议,大多数交换机都支持该协议。VTP负责在VTP域内同步VLAN信息,这样就不必在每个交换上配置相同的VLAN信息。VTP还提供一种映射方案,以便通信流能跨越混合介质的骨干。VTP最重要的作用是,将进行变动时可能会出现在的配置不一致性降至最低。不过,VTP也有一些缺点,这些缺点通常都与生成树协议有关.
简述:
如果两台以及两台以上的交换机,具有相同的区域,相同的vlan,那么我们必须在所有的交换机上创建那些区域,vlan,这对于大型企业局域网来说是相当麻烦的:
①网络管理员,对于交换机的配置相当烦杂;
②网络管理员,对于交换机的管理相当烦杂,如果任意一台出现故障,就必须重新配置vlan,因此维护相当困难。
VTP的概念描述:
Vtp就是能够实现在多台交换机上共享vlan信息的协议。
它是通过以下方式来实现这一功能的:
①交换机之间必须用trunk模式的线路连接(前提)
②采用“域(domain)”来组织多个交换机;
③采用服务器/客户机模式管理多个交换机vlan;
④根据vtp配置版本号的大小,同步vlan信息。
如何配置VTP域(Domain)
问题:何为“域”?
“域“可以理解为一个区域,只有域名相同的交换机才能共享vlan信息,才可以实现VTP共享;
命令:
方法1:在全局模式下,直接输入vtp domain domain-name //domain-name为域名
方法2:
①在特权模式下,进入vlan数据库vlan database
②指定域名vtp domain domain-name //domain-name为域名
VTP有三种模式:
1.Server(默认)服务器模式:
交换机被配置成服务器模式时,该交换机能够创建、删除、修改vlan;并且它配置的vlan信息能够传输到其他处于server或client模式下的交换机。交换 机默认处于服务器模式,即server。
2.Client-客户端模式:
交换机被配置成客户机模式时,该交换机不允许创建、删除、修改vlan;它只能够接受其他处于服唯梁务器 模式或透明模式的vlan信息,并更新自己的数据库。处于该判游模式的交换机在断电后,vlan信息自动消失。
3.Transparent-透明模式
交换机被配置成透明模式时,该交换机只转发其他交换机的vlan信息,不通告自己信息,也不根据别人信息更新自己的信息。
如何配置VTP服务器/客户模式:
命令:
1.配置交换机为服务器模式vtp mode server
2.配置交换机为客户机模式vtp mode client
3.配置交换机为透明模式vtp mode transparent
查看交换机vtp信息命令:show vtp status //特权模式输入
为vtp区域创建密码:
说明:配置vtp密码有助于防止非法交换机任意接入vtp域,带来不安全隐患 ;但是此时,密码必须在所有交掘山销换机配置。
命令:
在任意交换机上,配置一下命令vtp password xxx
注意:vtp密码为明文,配置时,应配置尽可能复杂的密码
查看vtp域密码命令:show vtp password
Ⅲ 有VTP配置的简单命令吗
创建VTP 域
switch(config)# vtp domian domain_name
配置交换机的VTP模式
switch(config)# vtp mode server | client | transparent
配置VTP口令
switch(config)# vtp password password
配置VTP修剪
switch(config)# vtp pruning
VTP版本的配置
switch(config)# vtp version 2
查看VTP的配置
switch# show vtp status
Ⅳ 交换机与路由器的常用配置命令是什么
1.交换机支持的命令:
交换机基本状态:switch:;ROM状态,
路由器是rommon>hostname>;用户模式hostname#;特权模式hostname(config)#;全局配置模式hostname(config-if)#;接口状态
交换机口令设置:switch>enable;进入特权模式
switch#configterminal;进入全局配置模式
switch(config)#hostname;设置交换机的主机名
switch(config)#enablesecretxxx;设置特权加密口令
switch(config)#enablepasswordxxa;设置特权非密口令
switch(config)#lineconsole0;进入控制台口
switch(config-line)#linevty04;进入虚拟终端
switch(config-line)#login;允许登录
switch(config-line)#passwordxx;设置登录口令
xxswitch#exit;返回命令
交换机VLAN设置:
switch#vlandatabase;进入VLAN设置
switch(vlan)#vlan2;建VLAN2
switch(vlan)#novlan2;删vlan2
switch(config)#intf0/1;进入端口1
switch(config-if)#switchportaccessvlan2;当前端口加入
vlan2switch(config-if)#switchportmodetrunk;设置为干线
switch(config-if)#switchporttrunkallowedvlan1,2;设置允许的vlan
switch(config-if)#switchporttrunkencapdot1q;设置vlan中继
switch(config)#vtpdomain;设置发vtp域名
switch(config)#vtppassword;设置发vtp密码
switch(config)#vtpmodeserver;设置发vtp模式
switch(config)#vtpmodeclient;设置发vtp模式
交换机设置IP地址:
switch(config)#interfacevlan1;进入vlan1
switch(config-if)#ipaddress;设置IP地址
switch(config)#ipdefault-gateway;设置默认网关
switch#dirflash:;查看闪存
交换机显示命令:
switch#write;保存配置信息
switch#showvtp;查看vtp配置信息
switch#showrun;查看当前配置信息
switch#showvlan;查看vlan配置信息
switch#showinterface;查看端口信息
switch#showintf0/0;查看指定端口信息
2.路由器支持的命令:
路由器显示命令:
router#showrun;显示配置信息
router#showinterface;显示接口信息
router#showiproute;显示路由信息
router#showcdpnei;显示邻居信息
router#reload;重新起动
路由器口令设置:
router>enable;进入特权模式
router#configterminal;进入全局配置模式
router(config)#hostname;设置交换机的主机名
router(config)#enablesecretxxx;设置特权加密口令
router(config)#enablepasswordxxb;设置特权非密口令
router(config)#lineconsole0;进入控制台口
router(config-line)#linevty04;进入虚拟终端
router(config-line)#login;要求口令验证
router(config-line)#passwordxx;设置登录口令xx
router(config)#(Ctrl+z);返回特权模式
router#exit;返回命令
路由器配置:
router(config)#ints0/0;进入Serail接口
router(config-if)#noshutdown;激活当前接口
router(config-if)#clockrate64000;设置同步时钟
router(config-if)#ipaddress;设置IP地址
router(config-if)#ipaddresssecond;设置第二个IP
router(config-if)#intf0/0.1;进入子接口
router(config-subif.1)#ipaddress;设置子接口IP
router(config-subif.1)#encapsulationdot1q;绑定vlan中继协议
router(config)#config-register0x2142;跳过配置文件
router(config)#config-register0x2102;正常使用配置文件
router#reload;重新引导
路由器文件操作:
router#running-configstartup-config;保存配置
router#running-configtftp;保存配置到tftp
router#startup-configtftp;开机配置存到tftp
router#tftpflash:;下传文件到flash
router#tftpstartup-config;下载配置文件ROM状态:
Ctrl+Break;进入ROM监控状态
rommon>confreg0x2142;跳过配置文件
rommon>confreg0x2102;恢复配置文件
rommon>reset;重新引导
rommon>xmodem:flash:;从console传输文件
rommon>IP_ADDRESS=10.65.1.2;设置路由器IP
rommon>IP_SUBNET_MASK=255.255.0.0;设置路由器掩码
rommon>TFTP_SERVER=10.65.1.1;指定TFTP服务器IP
rommon>TFTP_FILE=c2600.bin;指定下载的文件
rommon>tftpdnld;从tftp下载
rommon>dirflash:;查看闪存内容
rommon>boot;引导IOS
静态路由:
iproute;命令格式router(config)#iproute2.0.0.0255.0.0.01.1.1.2;
静态路由举例router(config)#iproute0.0.0.00.0.0.01.1.1.2;默认路由举例
动态路由:
router(config)#iprouting;启动路由转发
router(config)#routerrip;启动RIP路由协议。
router(config-router)#network;设置发布路由
router(config-router)#negihbor;点对点帧中继用。
最好是去官方网站参考手册。
Ⅳ 如何配置VTP
方山侍念法/步骤
首先,打开思科模拟器软件,连接三台交换机的连接线,将所有交换机互相连接起来,一逗困台当服务器,一台当客户机,另外一台当透明模式。
Ⅵ 交换机portstatus配置命令
交换机portstatus配置命令有:
用户视图
登陆设备后,直接进入用户模式,只能执行少量查看配置的命令
Info: The max number of VTY users is 10, and the number
of current VTY users on line is 1.
The current login time is 2020-04-10 12:15:00+00:00.
<ZD_agg_5720>
系统视图
用户模式下,输入system-view命令进入视图模式,可执行设备全局配置的命令
<ZD_agg_5720>system-view
Enter system view, return user view with Ctrl+Z.
[ZD_agg_5720]
局部视图
系统视图模式下,输入局部配置命令,进入局部对像的配置视图。如interface GE 1/0/0,进入GE1/0/0端口配置模式
<ZD_agg_5720>system-view
Enter system view, return user view with Ctrl+Z.
[ZD_agg_5720]interface GigabitEthernet 1/0/1
[ZD_agg_5720-GigabitEthernet1/0/1]
信息查看命令
交换机信息查看
display version 查看交换机软件版本
display clock 查看交换机时钟
交换机配置查看
display saved-configuration 显示系统保存配置
display current-configuration 显示系统当前配置
当前对象信息查看
display this 显示当前信息。
display this include-default 显示当前接口视图下的接口信息,包括默认值。
display this interface 显示当前接口视图下的接口信息。
查看接口
display interface 查看接口当前运行状态和接口统计信息
display interface brief 查看接口状态和配置的简要信息。
display interface description 查看指定接口的描述信息
display interface vlanif 查看VLANIF接口的状态信息、配置信息和统计信息。
查看IP相关
display ip interface 查看接口与IP相关的配置和统计信息,包括接口接收和发送的报文数、字节数和组播报文数,以及接口接收、发送、转发和丢弃的广播报文数。
display ip interface brief 看接口与IP相关的简要信息,包括IP地址、子网掩码、物理链路和协议的Up/Down状态以及处于不同状态的接口数目。
display ip interface description 查看接口与IP相关的简要信息,包括IP地址、子网掩码、物理层状态、链路层协议状态,及接口描述信息和处于不同状态的接口数目。
display ip pool 显示所有ip pool
display ip pool name {pool name} {all|conflict|expired|used} 显示ip pool详细信息
display ip host 查看静态DNS表项
display ip socket 查看已创建的IPv4 Socket信息。
display ip statistics 显示IP流量统计信息。
查看路由
display ip routing-table 显示路由信息
display ospf peer 查看ospf邻接等信息
display ospf peer brief 查看ospf邻接等简要信息
display rip 查看rip路由信息
网络及流量
display network status { all|tcp|udp|port port-number } 显示IP流量统计信息
display tcp statistics 查看TCP流量统计信息
display udp statistics 查看UDP流量统计信息
VLAN查看
display vlan 显示VLAN信息
display vlan {pvid} verbose 查看vlan的详细信息
display port vlan 查看VLAN中包含的接口信息
display sub-vlan 查看Sub-VLAN类型的VLAN表项信息
display super-vlan 查看Super-VLAN类型的VLAN表项信息
display mac-vlan mac-address all 查看所有MAC地址划分VLAN的配置信息
display mac-vlan vlan 2 查看vlan 2 MAC地址划分VLAN的配置信息
查看ACL配置
display acl {all | name | ipv6} 查看ACL
display traffic classifier user-defined 查看用户定义的流分类
display traffic behavior user-defined 查看用户定义的流行为
display traffic policy user-defined {policy name} 查看用户定义的流策略
display traffic-applied {inbound | outbound | interface | vlan} 查看流策略应用情况
display traffic policy {global | interface | statistics | vlan } {inbound | outbound} 查看更多流策略信息
display traffic policy statistics {global | interface | vlan} {inbound | outbound} 查看流策略统计信息
display traffic-filter applied-record 查看acl应用的接口
查看NAT配置
#路由器命令
display nat static {acl | global | inside | interface} 查看静态NAT信息
display nat session {all | dest | number | protocol | source} 查看动态NAT信息
display nat server {acl | global | inside | interface} 查看NAT server信息
配置管理命令
端口管理
port 配置接口的缺省VLAN并加入该VLAN
port description 配置接口的描述信息,描述与接口相连的设备类型。
port gigabitethernet 0/0/1 to 0/0/4
port default vlan 配置接口的缺省VLAN并同时加入这个VLAN。
port link-type {access | hybird | trunk} 配置接口的链路类型
port trunk allow-pass vlan {vlanid} 将trunk接口加入vlan
端口配置
speed {10|100|auto} 配置端口工作速率
plex {half|full|auto}
Ⅶ 普通交换机常用配置命令是什么
CISCO交换机基本配置:Console端口连接 x0dx0a用户模式hostname# ;x0dx0a特权模式hostname(config)# ;x0dx0a全局配置模式hostname(config-if)# ;x0dx0ax0dx0a交换机口令设置: x0dx0aswitch>enable ;进入特权模式x0dx0aswitch#config terminal ;进入全局配置模式x0dx0aswitch(config)#hostname csico ;设置交换机的主机名x0dx0aswitch(config)#enable secret csico1 ;设置特权加密口令x0dx0aswitch(config)#enable password csico8 ;设置特权非密口令x0dx0aswitch(config)#line console 0 ;进入控唤拍制台口x0dx0aswitch(config-line)#line vty 0 4 ;进入虚拟终端x0dx0aswitch(config-line)#login ;虚拟终端允许登录x0dx0aswitch(config-line)#password csico6 ;设置虚拟终端登录口令csico6x0dx0aswitch#exit ;返回命令x0dx0a交换机VLAN创建,删除,端口属性的设置,配置trunk端口,将某端口加入vlan中困举,配置VTP:x0dx0aswitch#vlan database ;进入VLAN设汪链碧置x0dx0aswitch(vlan)#vlan 2 ;建VLAN 2x0dx0aswitch(vlan)#vlan 3 name vlan3 ;建VLAN 3并命名为vlan3x0dx0aswitch(vlan)#no vlan 2 ;删vlan 2x0dx0aswitch(config)#int f0/1 ;进入端口1x0dx0aswitch(config)#speed ? 查看speed命令的子命令x0dx0aswitch(config)#speed 100 设置该端口速率为100mb/s (10/auto)x0dx0aswitch(config)#plex ? 查看plex的子命令x0dx0aswitch(config)#plex full 设置该端口为全双工(auto/half)x0dx0aswitch(config)#description TO_PC1 这是该端口描述为TO_PC1x0dx0aswitch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2x0dx0aswitch(config-if)#switchport mode trunk ;设置为trunk模式(access模式)x0dx0aswitch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlanx0dx0aswitch(config-if)#switchport trunk encap dot1q ;设置vlan 中继x0dx0aswitch(config)#vtp domain vtpserver ;设置vtp域名相同x0dx0aswitch(config)#vtp password ;设置发vtp密码x0dx0aswitch(config)#vtp server ;设置vtp服务器模式x0dx0aswitch(config)#vtp client ;设置vtp客户机模式x0dx0ax0dx0a交换机设置IP地址,默认网关,域名,域名服务器,配置和查看MAC地址表:x0dx0aswitch(config)#interface vlan 1 ;进入vlan 1x0dx0aswitch(config-if)#ip address 192.168.1.1 255.255.255.0 ;设置IP地址x0dx0aswitch(config)#ip default-gateway 192.168.1.6 ;设置默认网关x0dx0aswitch(config)#ip domain-name cisco.com 设置域名x0dx0aswitch(config)#ip name-server 192.168.1.18 设置域名服务器x0dx0aswitch(config)#mac-address-table? 查看mac-address-table的子命令x0dx0aswitch(config)#mac-address-table aging-time 100 设置超时时间为100msx0dx0aswitch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3端口x0dx0aswitch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入静态地址目标端口f0/6源端口f0/7x0dx0aswitch(config)#endx0dx0aswitch#show mac-address-table 查看整个MAC地址表x0dx0aswitch#clear mac-address-table restricted static 清除限制性静态地址x0dx0a交换机显示命令:x0dx0aswitch#write ;保存配置信息x0dx0aswitch#show vtp ;查看vtp配置信息x0dx0aswitch#show run ;查看当前配置信息x0dx0aswitch#show vlan ;查看vlan配置信息x0dx0aswitch#show interface ;查看端口信息x0dx0aswitch#show int f0/0 ;查看指定端口信息x0dx0aswitch#show int f0/0 status;查看指定端口状态x0dx0aswitch#dir flash: ;查看闪存