国林地板好还是圣象好生产实力怎么样?

国林 - 知乎有问题,上知乎。知乎作为中文互联网最大的知识分享平台,以「知识连接一切」为愿景,致力于构建一个人人都可以便捷接入的知识分享网络,让人们便捷地与世界分享知识、经验和见解,发现更大的世界。还没有动态正在初始化报价器<span data-v-4bcom交换机配置要咋看?介绍下<h3 data-v-4bc5100交换机该如何配置?
cisco交换机配置清除、启动及基本配置 CISCO交换机基本配置
switch>ena 进入特权模式
switch#erase nvram 全部清除交换机的所有配置
switch#reload 重新启动交换机(初始提示符为switch> )
------------------------------------------------------------------------------------
CISCO交换机基本配置:Console端口连接
用户模式hostname> ;
特权模式hostname(config)# ;
全局配置模式hostname(config-if)# ;
交换机口令设置:
switch>enable ;进入特权模式
switch#config;进入全局配置模式
switch(config)#hostname csico ;设置交换机的主机名
switch(config)#enable secret csico1 ;设置特权加密口令
switch(config)#enable password csico8 ;设置特权非密口令
switch(config)#line console 0 ;进入控制台口
switch(config-line)#line vty 0 4 ;进入虚拟终端
switch(config-line)#login ;虚拟终端允许登录
switch(config-line)#password csico6 ;设置虚拟终端登录口令csico6
switch#write 保存配置设置
switch#copy running-config startup-config 保存配置设置,与write一样
switch#exit ;返回命令
配置终端过一会时间就会由全局配置模式自动改为用户模式,将超时设置为永不超时
switch#conf t
switch(config)#line con 0
switch(config-line)#exec-timeout 0
---------------------------------------------------------------------------------
交换机显示命令:
switch#write ;保存配置信息
switch#show vtp ;查看vtp配置信息
switch#show run ;查看当前配置信息
switch#show vlan ;查看vlan配置信息
switch#show vlan name vlan2
switch#show interface ;查看端口信息
switch#show int f0/0 ;查看指定端口信息
switch#show int f0/0 status;查看指定端口状态
switch#show interface status
switch#dir flash: ;查看闪存
switch#show running-config
switch(config)#do show running-config 显示存储在内存中的当前正确配置文件。
show startup-configuration:显示存储在非易失性存储器(NVRAM)的配置文件。
show users:显示所有连接到路由器的用户。
show hosts:显示主机名和地址信息。
switch(config)#do show interface
switch(config-if)#do show int f0/21
switch#show arp
switch#show mac-address-table
------------------------------------------------------------------------------
2960交换机上配置,配置IP及网关
switch#conf t
switch(config)#interface vlan1 进入vlan 1特殊接口配置模式
switch(config-if)#ip address 192.168.1.1 255.255.255.0 设置交换机的管理IP地址
switch(config)#ip default-gateway 192.168.1.1 设置交换机的网关地址
switch(config)#ip domain-name pctc。com。cn 设置交换机所连域的域名
switch(config)#no ip domain-name
switch#ip name-server 218.87.18.230 设置交换机所连域的域名服务器IP
switch#show int vlan 1 查看交换机的VLAN 1特殊接口配置信息
switch#show run 查看交换机的当前运行配置等全部信息
--------------------------------------------------------------------------------
交换机VLAN创建,删除,端口属性的设置,配置trunk端口,将某端口加入vlan中,配置VTP:
switch(config)#vlan 2
switch#vlan database ;进入VLAN设置
switch(vlan)#vlan 2 ;建VLAN 2
switch(vlan)#vlan 3 name vlan3 ;建VLAN 3并命名为vlan3
switch(vlan)#no vlan 2 ;删vlan 2
switch(config)#int f0/1 ;进入端口1
switch(config)#speed ? 查看speed命令的子命令
switch(config)#speed 100 设置该端口速率为100mb/s (10/auto)
switch(config-if)#do show int f0/21 显示21口配置信息
switch(config-if)#shut ;shutdown 关闭当前端口
switch(config-if)#no shut ;no shutdown 开启当前端口
switch(config)#duplex ? 查看duplex的子命令
switch(config)#duplex full 设置该端口为全双工(auto/half)
switch(config)#description TO_PC1 这是该端口描述为TO_PC1
switch(config)#interface f0/21
switch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2
switch(config-if)#switchport mode trunk ;设置为trunk模式(access模式)
switch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlan
switch(config-if)#switchport trunk encap dot1q ;设置vlan 中继
switch(config)#vtp domain vtpserver ;设置vtp域名相同
switch(config)#vtp password ;设置发vtp密码
switch(config)#vtp server ;设置vtp服务器模式
switch(config)#vtp client ;设置vtp客户机模式
---------------------------------------------------------------------------------------
交换机设置IP地址,默认网关,域名,域名服务器,配置和查看MAC地址表:
switch(config)#interface vlan 1 ;进入vlan 1
switch(config-if)#ip address 192.168.1.1 255.255.255.0 ;设置IP地址
switch(config)#ip default-gateway 192.168.1.6 ;设置默认网关
switch(config)#ip domain-name cisco。com 设置域名
switch(config)#ip name-server 192.168.1.18 设置域名服务器
switch(config)#mac-address-table? 查看mac-address-table的子命令
switch(config)#mac-address-table aging-time 100 设置超时时间为100ms
switch(config)#mac-address-table permanent .bbcc f0/3 加入永久地址在f0/3端口
switch(config)#mac-address-table restricted static .bbcc f0/6 f0/7 加入静态地址目标端口f0/6源端口f0/7
switch(config)#end
switch#show mac-address-table 查看整个MAC地址表
switch#clear mac-address-table restricted static 清除限制性静态地址
-----------------------------------------------------------------------------------
交换机端口加入vlan
将多个端口加入到VLAN2
switch(config)#interface range fa 0/17-24
switch(config-if-range)#switchport access vlan 2
单个端口加入VLAN
switch(config)#interface f0/1
switch(config-if-range)#switchport access vlan 2
--------------------------------------------------------------------------------
交换机的端口和MAC地址表的设置
2960交换机配置端口属性
switch#conf t
switch#interface ethernet 0/1
进入第1个端口
switch#description switch-e0/1-pc1
给端口写入注释信息
switch#duplex auto/full/full-flow-control/half
设置端口的工作模式
switch#port secure
启用端口安全性
switch#port secure max-mac-count 1
设置该端口允许对应的MAC地址数(默认132个)
switch#sh mac-address-table security
查看端口安全性
2912交换机配置端口属性
switch#conf t
进入全局配置模式
switch#interface fastethernet 0/1
进入第1个端口
switch#description switch-f0/1-pc1
给端口写入注释信息
switch#duplex auto/full/half
设置端口的工作模式
switch#port security
启用端口安全性
switch#port security max-mac-count 1
设置该端口允许对应的MAC地址数(默认132个)
switch#end
返回特权模式
switch#sh port security
查看端口安全性
配置和查看MAC地址表
1924交换机配置MAC地址表
switch#mac-address-table aging-time 600
设置动态地址超时时间
switch#mac-address-table permanent 0000.0cdd.5a4d e0/3
定义永久MAC地址(绑定MAC地址)
switch#mac-address-table restricted static 0000.0cdd.aaed e0/6 e0/7
定义受限MAC地址
switch#address-violation disable/ignore/suspend
定义地址安全违规
switch#show mac-address-table
查看上述配置
switch#clear mac-addr restric static
清除受限MAC地址表项
2912交换机配置MAC地址表
switch#mac-address-table aging-time 700
设置动态地址超时时间
switch#mac-address-table static 0000.0cdd.5a4d e0/3
定义永久MAC地址(绑定MAC地址)
switch#mac-address-table secure 00d0.f80d. vlan 1
定义受限MAC地址
switch#port security action shutdown/trap
定义地址安全违规
switch#show port security
查看上述配置
配置VTP、VLAN、VLAN Trunk和STP
switch#conf t
switch#vtp server
定义VTP的工作模式
switch#vtp domain cisco
定义VTP的域名
switch#trunk on
switch#vtp domain cisco
switch#vtp client
定义VTP的工作模式
switch#trunk on
switch#show trunk b
switch#show trunk b allowed-vlans
查看干道信息
switch#vlan 10 dept1
switch#vlan 20 dept2
switch#vlan 30 dept3
switch#vlan 40 dept4
定义所需VLAN
switch#show vlan
查看VLAN信息
switch#show vlan
switch#show vtp
查看VTP的信息
switch#int e0/1
switch#vlan-membership static 10
switch#int e0/2
switch#vlan-membership static 20
switch#int e0/3
switch#vlan-membership static 30
switch#int e0/4
switch#vlan-membership static 40
把接口划入各自VLAN
配置spanning tree
switch#spantree 1
启用生成树协议
switch#sh spantree 1
查看生成树信息
switch#no spantree 1
关闭生成树协议
switch#sh spantree 1
查看生成树信息
交换机上屏蔽个别MAC地址方法
configure terminal
interface gigabitEthernet 0/20
switchport
sw mode acc
sw port-sec
sw port-sec mac-add [macaddress]
sw port-sec max 1
sw port-sec violation restrict
<h3 data-v-4bcs5500交换机配置高不高
全千兆三层以太网交换机,产品具有24个10/100/1000Base-T以太网端口,4个复用的SFP 千兆端口(Combo),具备丰富的业务特性,提供IPv6转发功能以及最多4个10GE扩展接口。产品还支持堆叠功能,可实现多达16台设备的堆叠,支持不同端口设备的混合堆叠。品质不俗,性能较强
<h3 data-v-4bcdhcpsnooping交换机该如何配置?
你好,核心交换机下面接7个二层交换机,可以有不同的网关的。在核心交换机设置成7个VLAN,每VLAN接一个交换机,然后给各个VLAN设置一个地址,那么这个地址即是下面的各个交换机的网关了。
希望能帮到你
<h3 data-v-4bc5800交换机如何配置?
产品类型:万兆以太网交换机
传输速率:10/100/Mbps
包转发率:156Mpps
MAC地址表:32K
端口参数 端口结构:非模块化
端口描述:24个10/100/1000Base-T以太网端口,4个1/10G SFP+端口
控制端口:1个Console口
扩展模块:1个业务槽位数
传输模式:全双工/半双工自适应
<h3 data-v-4bc5024e交换机怎么配置?
<p class="answer-box" data-v-4bc5024e交换机先设置你的网络参数(右键“网上邻居”-“属性”-右键“本地连接”-属性-找到TCP/IP协议后双击它):
  IP地址:192.168.1.11
  子网掩码:255.255.255.0
  网关:192.168.1.1
  DNS:不要管它。
  然后一路“确定”,需要重启的时候重启。不过有没有提示,你最好还是重新启动一下。
  第二台机器,如第一台,只是将IP地址变成192.168.1.12即可。依次类推,这时已经成功组成局域网。
  设置宽带路由,我想应该有说明书的啦。先找一台机器,然后打开IE,在地址栏里输入:192.168.1.1后回车。提示你输入用户名和密码,见说明书。正确进入路由配置界面后,上网方式,如果是ADSL拨号选择PPPOE形式,这时需要输入你上网的用户名和密码。如果是直接分配IP选择直接IP形式,详情请咨询ISP商。
<h3 data-v-4bcs360052psi交换机如何配置?
你有console 线吗,? 一般都有console 口,通过那个口与计算机相连 用超级终端进入 进行配置还有要是知道管理地址可以通过管理地址配置 恢复出厂设置的 命令应该是 system-view 进入用户视图 然后reset saved-configuration 清空配置 然后reboot 就应该ok了。希望对你有帮助!
<h3 data-v-4b层交换机配置路由器方法谁清楚?
手动设置电脑D和E的的IP地址分别为192.168.1.x,网络连接-本地连接-属性-常规-Internet协议-使用下面的IP地址,IP地址:192.168.1.30(举例),子网掩码:255.255.255.0,默认网关:192.168.1.1,使用下面的DNS服务器地址,首选DNS服务器:192.168.1.1
备用DNS服务器:不填。设置完毕,点确定保存。
华3核心交换机配置是怎样的?
<p class="answer-box" data-v-4b,两个vlan的网关是起在SWB上吗?H3C的三层交换机默认是开启路由功能的,2个网关可以相互ping通,两台PC就没问题。但如果只让PC C访问PC B的话,需要另外加acl来控制,光靠vlan做不出来。
2,B不能访问A,你指的是交换机上直接连接?SWB的路由写了吗?10.66.7.0对SWB来说是未知网段,不是直连网段。
希望对您有所帮助
思科3层交换机配置是怎样的?
<p class="answer-box" data-v-4b、照图连线
2、起名的命令——hostname caiwu
3、电脑配置
4、端口ip地址配置命令—— ip add
5、配置vlan的命令——
6、配置端口vlan的命令——sw acc vlan 20
7、在左边路由器s0/0/0口上配置 clock rate 64000
8、静态路由——ip route
12、端口模式——sw mode acc
端口安全——switchport port-security violation protect
----------------------------------不要忘记copy run start
希望我的回答对你有所帮助!
<h3 data-v-4b层交换机如何配置让人自动获取DNS
dns应该是4层动作吧,这个已经超过了3层设备的管理范围。
你只需要把3层路由做通,dns分配是在isp那边控制的,你接上了isp后,isp会把dns分配下来的。热门问答123456789101112131415161718192021222324252627282930免费名额仅剩:
000抢先预约页面已拦截
无锡网警提示您:
该网址被大量用户举报,可能含有恶意信息。页面已拦截
无锡网警提示您:
该网址被大量用户举报,可能含有恶意信息。页面已拦截
无锡网警提示您:
该网址被大量用户举报,可能含有恶意信息。

我要回帖

更多关于 国林凉糕怎么样 的文章

 

随机推荐