關於cisco ccp 或sdm管理gns3中思科路由器的成功分享

原本工做環境中有一臺c1841,閒來無事,升級了最新的IOS=c1841-adventerprisek9-mz.151-4.M6.bin,在xp虛擬機中安裝sdm(新windows系統不支持)和在win7真實主機中安裝ccp進入並管理了一下。適逢gns3-2.0.0正式發佈,以前的測試版本均不能作到本文的實驗效果(之前的版本有90%的時間是鏈接失敗的,真的搞不懂緣由,有時以是能夠的,:)。html

 

1、介紹一下ccpjava

它是SDM的升級版。ios

 

2、須要的安裝包和環境配置git

實驗環境:github

windows7 x64 (能夠是虛擬機,能夠是物理主機,因爲實現環境緣由,測試時用的是虛擬機)windows

GNS3-2.0.0-all-in-one.exe(安裝到虛擬機中)及相應的GNS3.VM.VMware.Workstation.2.0.0.zip(須要安裝vmware workstation,而後導入)。瀏覽器

 

注,個人主機是win10(1703),安裝vmware workstation 12 pro,導入GNS3.VM.VMware.Workstation.2.0.0.zip壓縮包中的GNS3 VM.ova模板。而後安裝gns3,配置好並聯接(配置以及導入IOS、IOU等過程請自行google,這也是一個學習探索的過程)。網絡

下載地址:oracle

https://github.com/GNS3/gns3-gui/releasesssh

 

 

  保證以上gns3環境正常。

  在此也提出一個最小化的測試環境:直接安裝GNS3-2.0.0-all-in-one.exe到物理機win7(由於ccp不支持win10)中(也再也不使用gns3-vm),導入IOS。測試ios正常在gns3中使用便可。

 

3、讓gns3正常跑起來

 下載上面的gns3,並參考以下的效果圖構建拓撲。須要vmware使用的知識。

 推薦優先測試c7200系列IOS(下圖主窗口和右側的概覽供參考)

 

cloud1中的eth0是ccp聯接到IOS的關鍵(名字不必定是這個,但起的做用纔是重點)

 

若是你是用的gns3-vm:則eth0對應的是gns3-vm虛擬機上的網卡,該gns3-vm上的網卡,路由器R1c7200的f0/0地址應該與eth0在一個網段(網絡)中。

添加好cloud節點,右鍵打開配置,添加全部網卡。(提示:若是你用gns3-vm server 則實際狀況以下圖;若是你用最小化的gns3 local server,就會顯示當前主機的相關網卡)。ccp不管是安裝在虛擬機中,仍是當前主機中,只要你讓ccp可以鏈接eth0(ping通便可)。

下面詳細說明一下:

第一種狀況:使用gns3-vm server:gns3-vm虛擬機內部網卡配置eth0地址爲10.0.0.200 /24,vmware網卡模式設置到,自定義,僅主機模式vmnet2,沒有的自行添加

 

 

 

 

 在win7中(運行ccp的主機)網絡設置中找到vmnet2,設置地址爲10.0.0.1 /24

在win7中(運行ccp的主機是虛擬機)網絡設置中找到本地鏈接,設置地址爲10.0.0.1 /24 ,其外部vmware網卡模式設置到,自定義,僅主機模式vmnet2,沒有的自行添加,參考gns3-vm設置的圖片。

 

 第二種狀況:不使用gns3-vm server,只使用local server (只安裝gns3便可),只須要一個gns3便可搞定。

詳細配置,在當前win7主機中添加一個 環回網絡接口,配置地址爲10.0.0.1 /24。gns3中節點cloud1配置時添加全部網卡,此時eth0至關於這個環回接口。名字不重要。

 

不論哪一種狀況,配置好cloud1的eth0接口後,再配置IOS的地址,注意在同一網段就好了。

 

前面的拓撲中IOS R1c7200路由器與cloud1(實際也至關於一臺路由器了)中間的是非可網管交換機(傻瓜交換機),添加它的目的是可讓ccp經過eth0這一個接口能同時鏈接周圍其它的IOS或IOU,初次配置時,能夠只配置R1c7200、交換機、cloud1三個節點,以下圖。

 

 

gns3中 IOS端的配置,是摘錄的,直接摘取有用部分便可。

 1 Q. How do I use Cisco Configuration Professional with an integrated services router that does not have a factory default configuration
 2 A. Steps to run Cisco Configuration Professional on a Cisco router with a non-factory default configuration follow: 3 Step 1. Connect to your router using Telnet or SSH or through the console.Enter the global configuration mode using the command: 4 Router(config)# enable 5 Step 2. Enable the router HTTP or HTTPS server using the following Cisco IOS Software commands: 6 If HTTP and HTTPS are enabled and configured to use nonstandard port numbers, you can skip this step and simply use the port number already configured. 7 Router(config)# ip http server 8 Router(config)# ip http secure-server 9 Router(config)# ip http authentication local 10 Note: HTTPS is enabled only for cryptography-enabled Cisco IOS Software images. 11 Step 3. Create a user with privilege level 15. 12 Router(config)# username <username> privilege 15 password 0 <password> 13 Note: Replace <username> and <password> with the username and password that you want to configure. 14 Step 4. Configure SSH and Telnet for local login and privilege level 15: 15 Router(config)# line vty 0 4 16 Router(config-line)# privilege level 15 17 Router(config-line)# login local 18 Router(config-line)# transport input telnet 19 Router(config-line)# transport input telnet ssh 20 Router(config-line)# exit 21 Step 5. (Optional) Enable local logging to support the log monitoring function: 22 Router(config)# logging buffered 51200 warning

以上IOS配置摘自:

http://www.cisco.com/c/en/us/products/collateral/cloud-systems-management/configuration-professional/qa_c67_494831.html

http://www.cisco.com/c/en/us/support/cloud-systems-management/configuration-professional/products-installation-guides-list.html

 

 

 4、ccp的安裝配置部分到了

1.軟件安裝包3個,安裝時沒有太多配置的地方,直接next一步步往下走便可。(建議最後安裝ccp,下文也附有ccp安裝環境要求的截圖)

  flashplayer_24_ax_debug_24.0.0.194.exe

  jdk-6u45-windows-i586.exe

  cisco-config-pro-k9-pkg-2_8-en.exe 這個是ccp安裝包

相關下載

Cisco Configuration Professional 2.x 版本不要下載最新的,v2.8的就好了。

連接:http://pan.baidu.com/s/1nvpzAnn 密碼:ov9a

http://www.cisco.com/c/en/us/support/cloud-systems-management/configuration-professional/products-release-notes-list.html

http://www.cisco.com/c/en/us/products/cloud-systems-management/configuration-professional/index.html

java 

http://www.oracle.com/technetwork/java/archive-139210.html

adobe flash player 請自行搜索下載

 

安裝java和flashplayer後,設置一下IE瀏覽器,TLS1.x、彈窗阻止。再安裝ccp,通常能夠直接打開ccp了。

 

 

 

附截圖:

若是,JRE運行環境和Adobe Flash Player不安裝,ccp安裝最後會提示須要的環境不知足。若是不能進入時請

 

下圖,ccp的安裝系統要求:

摘自:http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_configuration_professional/v2_7/rlsnts/ccp_v27_rel_notes.html

 

 

 

 4、1 首次進入ccp

 

 ccp初次進入時要求填寫思科帳號,能夠跳,直接到下圖,填寫IOS配置的ip、vty 登錄用的username和password,勾選查找設備,點擊OK。更多,詳見官網介紹。

 

 

 

 

ccp安裝完成正常進入後的基本使用:

Basic Router Configuration Using Cisco Configuration Professional - Cisco.pdf

http://www.cisco.com/c/en/us/support/docs/cloud-systems-management/configuration-professional/111999-basic-router-config-ccp-00.html

 

 

分享到此,其中細節再也不贅述

 

回頭讀一讀,真的好混亂^_^

 

 

 

...

相關文章
相關標籤/搜索