Difference between revisions of "DHCP Cisco IOS"

From Teknologisk videncenter
Jump to: navigation, search
Line 3: Line 3:
 
== DHCP Server  ==
 
== DHCP Server  ==
  
DHCP Server example:
+
DHCP Server example:  
  
<pre>
+
<pre>
  
!
+
!  
  
ip dhcp excluded-address 192.168.22.1 192.168.22.99<br>ip dhcp excluded-address 192.168.22.200 192.168.22.255<br>!<br>ip dhcp pool STUDENTS<br>&nbsp;&nbsp;network 192.168.22.0 255.255.255.0<br>&nbsp;&nbsp;domain-name tekkom.dk<br>&nbsp;&nbsp;default-router 192.168.22.1<br>&nbsp;&nbsp;dns-server 192.168.22.223
+
ip dhcp excluded-address 192.168.22.1 192.168.22.99<br>ip dhcp excluded-address 192.168.22.200 192.168.22.255<br>!<br>ip dhcp pool STUDENTS<br>&nbsp;&nbsp;network 192.168.22.0 255.255.255.0<br>&nbsp;&nbsp;domain-name tekkom.dk<br>&nbsp;&nbsp;default-router 192.168.22.1<br>&nbsp;&nbsp;dns-server 192.168.22.223  
  
!
+
!  
  
&lt;/pre&gt;
+
</pre>

Revision as of 00:31, 3 February 2009

Computer Networking articles. Contains articles not suitable for specific categories like Category:Cisco, Category:CCNA, Category:CCNP or Category:IOS

Comment The information in this article is targeted to Cisco CCNA and CCNP curriculum, and not meant as in-depth information on all IOS

Contents

DHCP Server

DHCP Server example:


! 

ip dhcp excluded-address 192.168.22.1 192.168.22.99<br>ip dhcp excluded-address 192.168.22.200 192.168.22.255<br>!<br>ip dhcp pool STUDENTS<br>  network 192.168.22.0 255.255.255.0<br>  domain-name tekkom.dk<br>  default-router 192.168.22.1<br>  dns-server 192.168.22.223 

!