Telcom 1086-b如何將DHCP關掉



贊助商連結


aerocat
2002-08-02, 11:51 PM
可能寫的不清楚,重新寫一便

1. 使用TELCOM 1086-B的朋友你的ADSL MODEM DHCP的功能嗎?
2. 我的ADSL MODELM有DHCP功能,但我用browser進去看過
路由器模式 DHCP伺服器並沒有打勾
(從來沒有改過ADSL的設定)
可是電腦一開機就是會先抓到TELCOM MODEM. GET 到192.168.1.2

有人知道如何將TELCOM 1086B的DHCP關到嗎?

原先都是用分享器上網,最近一台電腦想架FTP,所以用pppre直接撥上上網
其他還是利用分享器上網,才發現這個現象
接法(加*是為了讓格式正確,請視為空白)
***********|-------------------|****|----ftp (自動取得IP)
adsl-----HUB1|***************|HUB2|-----computer1 (10.10.1.11)
***********|------IP share-----|****|-----computer2 (10.10.1.12)
10.10.10.1
mask 255.255.255.0

ADSL : 192.168.1.1 mask 255.255.255.0

接hub2的原因是因為想說有些檔案可以直接重compuer1 copy到ftp server
如果computer1,2都設成"自動取得IP"也會GET到192.168.1.XXX的IP

贊助商連結


hungwen
2002-08-04, 08:33 AM
最初由 aerocat 發表
可能寫的不清楚,重新寫一便

1. 使用TELCOM 1086-B的朋友你的ADSL MODEM DHCP的功能嗎?
2. 我的ADSL MODELM有DHCP功能,但我用browser進去看過
路由器模式 DHCP伺服器並沒有打勾
(從來沒有改過ADSL的設定)
可是電腦一開機就是會先抓到TELCOM MODEM. GET 到192.168.1.2

有人知道如何將TELCOM 1086B的DHCP關到嗎?

原先都是用分享器上網,最近一台電腦想架FTP,所以用pppre直接撥上上網
其他還是利用分享器上網,才發現這個現象
接法(加*是為了讓格式正確,請視為空白)
***********|-------------------|****|----ftp (自動取得IP)
adsl-----HUB1|***************|HUB2|-----computer1 (10.10.1.11)
***********|------IP share-----|****|-----computer2 (10.10.1.12)
10.10.10.1
mask 255.255.255.0

ADSL : 192.168.1.1 mask 255.255.255.0

接hub2的原因是因為想說有些檔案可以直接重compuer1 copy到ftp server
如果computer1,2都設成"自動取得IP"也會GET到192.168.1.XXX的IP


先依照下列步驟操作:

telnet 192.168.1.1
(輸入 password)
flashfs cat dhcpd.conf
@close

把顯示出來的內容貼上來,再研究看看...

aerocat
2002-08-10, 02:41 PM
Hi Hungwen
I am sorry to reply so slowly. I am not home last 5 days.

It is the config data I get from tecom adsl modem after dash line.
Please help me to solve this issue
-----------------------------------------------
logged on; type `@close' to close connection.
192.168.1.1> flashfs cat dhcpd.conf
allow unknown-clients;
allow bootp;
subnet 192.168.1.0 netmask 255.255.255.0
{
range 192.168.1.2 192.168.1.2;
max-lease-time 86400;
option routers 192.168.1.1;
}

192.168.1.1>

aerocat
2002-08-10, 02:42 PM
最初由 hungwen 發表


先依照下列步驟操作:

telnet 192.168.1.1
(輸入 password)
flashfs cat dhcpd.conf
@close

把顯示出來的內容貼上來,再研究看看... Hi Hungwen
I am sorry to reply so slowly. I am not home last 5 days.

It is the config data I get from tecom adsl modem after dash line.
Please help me to solve this issue
-----------------------------------------------
logged on; type `@close' to close connection.
192.168.1.1> flashfs cat dhcpd.conf
allow unknown-clients;
allow bootp;
subnet 192.168.1.0 netmask 255.255.255.0
{
range 192.168.1.2 192.168.1.2;
max-lease-time 86400;
option routers 192.168.1.1;
}

192.168.1.1>

hungwen
2002-08-10, 03:12 PM
最初由 aerocat 發表
Hi Hungwen
I am sorry to reply so slowly. I am not home last 5 days.

It is the config data I get from tecom adsl modem after dash line.
Please help me to solve this issue
-----------------------------------------------
logged on; type `@close' to close connection.
192.168.1.1> flashfs cat dhcpd.conf
allow unknown-clients;
allow bootp;
subnet 192.168.1.0 netmask 255.255.255.0
{
range 192.168.1.2 192.168.1.2;
max-lease-time 86400;
option routers 192.168.1.1;
}

192.168.1.1>

要關掉 DHCP 功能, 需按照下面步驟操作:
telnet 192.168.1.1
(輸入 password)
dhcpserver config flush
dhcpserver config confirm
config save
restart

要恢復 DHCP 功能, 需按照下面步驟操作:
telnet 192.168.1.1
(輸入 password)
dhcpserver config add allow unknown-clients;
dhcpserver config add allow bootp;
dhcpserver config add subnet 192.168.1.0 netmask 255.255.255.0
dhcpserver config add {
dhcpserver config add range 192.168.1.2 192.168.1.2;
dhcpserver config add max-lease-time 86400;
dhcpserver config add option routers 192.168.1.1;
dhcpserver config add }
dhcpserver config confirm
config save
restart

* 如果要增加 DHCP 發放 IP 之 range, 可將
dhcpserver config add range 192.168.1.2 192.168.1.2;
改為
dhcpserver config add range 192.168.1.2 192.168.1.254;
即可.

aerocat
2002-08-11, 01:19 AM
Thank a lot. I will try by your instruction.