2012年3月26日 星期一

FortiGate

Extreme

Enterasys

Router XSR-3150

defule user :
admin   (none)
admin   netadmin
ro         (none)
rw        (none)

>enable
#configure terminal

#show version
#show running-config

(config)#username admin password cleartext (password)
(config)#end

#copy running-config startup-config
#exit






LACP

LACP :  將 2個以上的 port連接在一起作為 Trunk,藉此達到 "加大頻寬"、" 平衡負載"、"網路備援" 的功用。

CISCO :
Switch(config)# interface range fastethernet0/1 -2 
Switch(config-if-range)# switchport mode access
Switch(config-if-range)# switchport access vlan 10
Switch(config-if-range)# channel-group 1 mode active
Switch(config-if-range)# end 



Switch(config)# interface channel-group 1
Switch(config-if-range)# ip address 192.168.1.1 255.255.255.252
Switch(config-if-range)# no shutdown
Switch(config-if-range)# end 


show etherchannel port
show etherchannel port-group
show etherchannel protocool





SNMP

SNMP (Simple Network Management Protocol) 簡單網路管理協議 : 
它能夠簡單的在網路上幫你詢問機器的狀態,並監測機器目前運作中的一些資訊。


中文WIKI : 網址


CISCO 開啟SNMP功能 : 
Router(config)#snmp community public ro 


pnblic : 一般SNMP預設密碼,也可以改成自定密碼
ro : 登入資料庫的模式,ro 為 read-only ,若設為 rw 則使用者可以設定或重置機器的狀態,一般都是設定為 ro 就好