CISCO router基本配置

2021-09-20 14:49:58 字數 3028 閱讀 2506

基本配置

包括:

1.配置主機名稱

2.配置特權密碼/登陸密碼/使用者資料庫

3.配置使用者資料庫

4.配置telnet 及con口

5.配置禁止dns解析

6.配置介面。能夠遠端登陸

7.配置檔案的儲存。

press return to get started!

router>ena

router#conf?   

configure 

terminal  configure from the terminal

router#configure terminal  進入控制台配置模式

enter configuration commands, one per line.  end with cntl/z.

router(config)#hostname r1    更改router名為r1

r1(config)#username cisco sec cisco   建立使用者名稱和密碼資料庫  sec  為secret的縮寫,加密。也可以為password

r1(config)#ena sec cisco         進行特權配置模式密碼,不配置的話telnet無法使用

r1(config)#banner motd #this cisco router!#    使用者提示語,顯示在進入router前。

r1(config)#line vty 0 4     配置虛擬連線(telnet)

r1(config-line)#login local   啟用登陸驗證,不啟用的話telnet不能使用

r1(config-line)#exec-timeout 88 1   設定超時值為88分鐘1秒

r1(config-line)#exi    退出

r1(config)#line console 0   進入控制台埠

r1(config-line)#login local 

r1(config-line)#exec-timeout 88 1

r1(config-line)#exit

r1(config)#no ip domain-lookup  禁用dns解析

r1(config)#exi

r1#%sys-5-config_i: configured from console by console

r1#clock set 15:36:10 mar 6 2011  設定時鐘

r1#show cloc

*15:36:18.94 utc ??? ?? 6 2011

r1#show ip int brief

inte***ce              ip-address      ok? method status                protocol

fastethernet0/0        unassigned      yes unset  administratively down down

fastethernet0/1        unassigned      yes unset  administratively down down

vlan1                  unassigned      yes unset  administratively down down

r1#conf t

enter configuration commands, one per line.  end with cntl/z.

r1(config)#inte***ce fastethernet0/0   進入埠f0/0

r1(config-if)#ip add 192.168.1.1 255.255.255.0   配置ip和掩碼

r1(config-if)#no shu   router埠預設是關閉。需要用no shutdown命令開啟.showdown命令關閉。

%link-5-changed: inte***ce fastethernet0/0, changed state to up

router(config-if)#description neiwang   

埠描述:neiwang

r1(config-if)#exi

r1(config)#logging ?  

a.b.c.d   ip address of the logging host

buffered  set buffered logging parameters

console   set console logging parameters

host      set syslog server ip address and parameters

on        enable logging to all enabled destinations

trap      set syslog server logging level

userinfo  enable logging of user info on privileged mode enabling

r1(config)#lin con 0

r1(config-line)#logging synchronous  它可以阻止那控制台資訊來打斷你當前的輸入,從而使輸入資訊顯得更為簡單易讀。debug時用處就顯現出來了。效果和配置只在控制台配置模式下

r1(config-line)#exi

r1(config)#exi

%sys-5-config_i: configured from console by console

r1#r1#copy running-config startup-config    儲存配置命令。 將ram中正在執行的配置running-config儲存 在nvram的startup-config 中

destination filename [startup-config]?

building configuration...

[ok]

r1#reload    重啟router

如何在cisco router完美刪除單條ACL?

討論 路由器上建立了多條訪問控制列表,檢查時發現有一條不妥,想將它刪掉,在全域性模式下,使用no access list seq.結果暈倒是,全部的訪問列表不見了。求教各位大蝦,怎麼樣去除某一條訪問列表而不會影響其它列表的功能。回答 由ccsp623,由sikiou編輯。一般管理者在設定acl的時候...

filebeat的基本配置 基本配置)

filebeat 輸入配置編寫 基本配置 efk 中filebeat的檔案輸入 抽取本地檔案的配置檔案編寫 filebeat.inputs type log enabled true paths var log log var log log 抽取普通日誌。模組格式化抽取。type log path...

nginx配置一 基本配置

1 安裝完成nginx之後,首先需要明白的,資料返回的流程是怎麼樣的?這裡假設我們的後端伺服器是tomcat,web伺服器我們使用nginx。那麼請求流程如下圖 如上圖所示 我們的請求首先是被我們的web服務nginx攔截之後,再去請求後台服務的tomcat,然後後端的服務tomcat將我們的資料通...