iT邦幫忙

0

如何在Cisco 1841 pppoe 轉 固定ip??

ltgs 2011-06-23 17:55:098136 瀏覽
  • 分享至 

  • xImage

公司裡使用Cisco 1841上網,原本是pppoe,但最近卻換了另一間網絡商,有固定ip,請問如何更改設定呢??需要先no pppoe 才輸入 ip address <ip> <subnet mask>嗎?還在其他要注意嗎?? 煩請各位大大賜教..謝謝

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

4
pisceseros
iT邦新手 3 級 ‧ 2011-06-27 16:52:24

想跟你先確認一件事,新的網路公司有給你固定IP,但連線方式有變更嗎?是否一樣是用撥接呢,因為你給的資訊太少了,我先假設是點對點的接法吧!

先將PPPOE的相關設定取消,或是備份後再取消,接著ISP端來的網路線插入1841,不知你的ISP端給你的是哪個PORT,哪種介面,一般都是普通的網路線
假設你插入F0/0
ISP給的網址是 62.13.45.23 MASK:255.255.255.0
GW是62.13.45.254
指令參考如下:

10 Router>en 進入en模式
20 Router#conf t 進入設置模式
30 Router(config)#int f0/0 進入f0/0介面
40 Router(config-if)#no shut 啟用該介面
50 Router(config-if)#ip add 62.13.45.23 255.255.255.0 輸入isp提供的ip及遮罩
60 Router(config-if)#do ping 62.13.45.254 ping 匣道
70 Type escape sequence to abort.
80 Sending 5, 100-byte ICMP Echos to 62.13.45.254, timeout is 2 seconds:
90 .!!!! !表示有ping通
100 Success rate is 80 percent (4/5), round-trip min/avg/max = 31/31/31 ms
110 Router(config-if)#
如果你們公司對外的網路只有一條出口,那請加入以下這個指令,表示不管誰要去internet都從這個地方出去,不過請你要先清楚貴公司的網路設置,以免造成問題,另外相信貴公司有做NAT,記得NAT的POOL部份也要更改為ISP配給的IP唷
120 Router(config-if)#ip route 0.0.0.0 0.0.0.0 62.13.45.254

ltgs iT邦新手 5 級 ‧ 2011-06-28 17:56:31 檢舉

首先謝謝兩位大大的回答,現想補充一些資訊:

  1. 連線方式是由撥接變為點對點
  2. 請問怎樣取消pppoe呢?
    以下是部份的running-config
    nterface fastethernet 0/0
    ip address 192.168.0.1 255.255.255.0
    ip access-group 150 in
    ip nat inside
    ip virtual-reassembly
    ip route-cache flow
    duplex auto
    speed auto
    interface fastethernet0/1
    no ip address
    ip route-cache flow
    duplex auto
    speed auto
    pppoe enable
    pppoe-client dial-pool-number 1
    no cdp enable
ltgs iT邦新手 5 級 ‧ 2011-06-28 17:56:56 檢舉

interface Dialer1
mtu 1492
bandwidth 1024
ip address negotiated
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
ip virtual-reassembly
encapsulation ppp
ip route-cache flow
ip tcp adjust-mss 1412
no ip mroute-cache
dialer pool 1
dialer watch-group 1
ppp authentication pap callin
ppp pap sent-username dgsmtasy password 7 104A0E48574446
crypto map newmap
ip local pool SDM_POOL_2 192.168.90.1 192.168.90.31
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 192.168.1.0 255.255.255.0 172.18.85.1
ip route 192.168.30.0 255.255.255.0 172.18.85.1

我要發表回答

立即登入回答