  LilYoda Feline with squirel personality disorder Premium join:2004-09-02 Mountains
1 edit | reply to LilYoda [Config] QoS+VoIP on a Cisco - LAN & DHCP
Starting here, all the below relies on a LAN segment of 192.168.254.0/24 (mask of 255.255.255.0)
The below config assumes that 192.168.254.1 is your DNS, NTP server and WINS server. This is my case, cause I have setup those features on my linux server. If you use another DNS/NTP/WINS, change the corresponding options below. If you don't have a WINS or NTP server, remove the lines related to it If you don't have a private DNS server, replace the "dns-server 192.168.254.1" with the IP address of your ISP's DNS
DHCP addresses will be given in the 192.168.254.128 -> 192.168.254.192 range
! service dhcp ! ip domain-name XXX.com ip name-server 192.168.254.1 no ip dhcp conflict logging ip dhcp excluded-address 192.168.254.1 192.168.254.128 ip dhcp excluded-address 192.168.254.192 192.168.254.254 ! ip dhcp pool Local-LAN network 192.168.254.0 255.255.255.0 default-router 192.168.254.253 domain-name XXX.com netbios-node-type h-node ! DNS server dns-server 192.168.254.1 ! WINS server netbios-name-server 192.168.254.1 ! NTP server option 42 ip 192.168.254.1 ! interface Ethernet1 description --- Internal LAN ip address 192.168.254.253 255.255.255.0 no ip redirects fair-queue ! ! Sync the router clock using the NTP server IP ntp server 192.168.254.1 |