Настройка DHCP сервера
Настраиваем список свойств DHCP-сервера:
AP200(config)# dhcp-list 0 ?
address |
Set DHCP address pool or relay address |
option |
Set DHCP options |
type |
DHCP Type (server or relay) |
AP200(config)# dhcp-list 0 type server
Задаем пул адресов, из которых сервер будет выдавать адреса компьютерам-клиентам
AP200(config)# dhcp-list 0 address server 10.10.10.2 10.10.10.254 255.255.255.0
Задаем свойства для DHCP-сервера:
AP200(config)# dhcp-list 0 option ?
(весь список возможных настраиваемых свойств:)
arp-cache-timeout |
Specifies the timeout in second for ARP cache |
default-ip-ttl |
The default TTL value for client |
dhcp-lease-time |
The lease time for the IP address |
dns |
A list of Domain Name System name server |
domain-name |
The domain name the client should be use when resolving hostname via Domain Name Syetem |
ethernet-encapsulation |
Specifies Ethernet Encapsulation |
interface-mtu |
Specifies the MTU on this interface |
name-server |
Specifies a list of name server |
ntp-server |
Specifies a list of IP addresses indicating NTP server |
max-lease-time |
Maximum lease time for given interface |
pop3-server |
Specifies a list of POP3 available to client |
router-option |
Specifies a list of IP addresses for routers |
smtp-server |
Specifies a list of SMTP server |
static-route |
Specifies a list of static routers that the |
client should |
install in its routing cache |
time-server |
Specifies a list of RFC868 time server |
www-server |
Specifies a list of WWW available to client |
Главное для нас, чтобы он задавал клиенту шлюз по умолчанию (самого себя).
Для этого мы указываем в нем router-option, адрес которого затем задаем для интерфейса, на котором будет работать этот сервер.
AP200(config)# dhcp-list 0 option router-option 10.10.10.1
Теперь входим в режим конфигурирования интерфейса и привязываем к нему данный список свойств:
AP200 (config)# int eth 1 0
AP200 (config-ether1.0)# ip address 10.10.10.1 255.255.255.0
AP200 (config-ether1.0)# ip dhcp-group 0
После этого желательно сохраниться.
В настройках протокола TCP/IP компьютера, подключаемого к данному порту шлюза, необходимо указать «Получить IP-адрес автоматически» и перезагрузить его.
Узнать сетевые настройки компьютера можно задав команду ipconfig
Посмотреть, сформированный список свойств можно сл.образом:
AP200(config)# show dhcp-list 0
(вот примерно что должно получиться)
dhcp-list 0 type server
dhcp-list 0 address server 10.10.10.2 10.10.10.254 255.255.255.0
dhcp-list 0 option domain-name addpac.com
dhcp-list 0 option dhcp-lease-time 3600
dhcp-list 0 option max-lease-time 2147483647
dhcp-list 0 option arp-cache-timeout 180
dhcp-list 0 option ethernet-encapsulation ethernet
dhcp-list 0 option interface-mtu 1500
dhcp-list 0 option default-ip-ttl 255
dhcp-list 0 option router-option 10.10.10.1