DHCP
dynamic host configuration protocol
动态的 主机配置协议
静态的
-配置内容
IP
-作用
自动的为终端设备,分配IP地址;
-角色
DHCP 服务器
DHCP 客户端
-配置:
1、配置DHCP客户端
-将网关的IP地址获取方式配置为:DHCP
2、配置DHCP服务器
Server-PC:
-配置服务器的IP地址: 192.168.1.100/24
-开启DHCP服务 : server -> dhcp -> on
-配置DHCP的 IP 地址池:
pool name : serverPool
start ip : 192.168.1.0
255.255.255.0
-保存地址池 : save ;
Router:
-配置IP地址:
interface fas0/1
no shutdown
ip address 192.168.1.100 /24
-开启DHCP服务
Router(config)#service dhcp
-配置 DHCP 地址池
Router(config)# ip dhcp pool Linux
Router(dhcp-config)#network 192.168.1.0 255.255.255.0
Router(dhcp-config)#default-router 192.168.1.100
Router(dhcp-config)#dns-server 8.8.8.8
3、验证与测试
Router#show ip dhcp binding //查看的是已经分配出去
的IP地址;
PC>ipconfig //验证获得的IP地址;
PC>
ping x.x.x.x
-------------------------------------------------
DHCP 地址排除:
这些地址,是不会被 DHCP 服务器自动的分配给
DHCP 客户端的。
配置命令:
Router(config)#
ip dhcp excluded-addres 192.168.1.1 192.168.1.10
//排除一段连续的IP地址;
ip dhcp excluded-addres 192.168.1.29
//排除不连续的单个地址;
=====================================================
VLAN间路由:
-多层交换机
1、配置网关IP
interface vlan 10 //配置 vlan 10 的网关IP;
no shutdown
ip address 192.168.10.254 255.255.255.0
interface vlan 20
no shutdown
ip address 192.168.20.254 255.255.255.0
interface vlan 30
no shutdown
ip address 192.168.30.254 255.255.255.0
2、启用路由功能
GW(config)# ip routing
3、配置多层交换机与普通交换机的级联链路
GW(config)#interface fas0/3
GW(config-if)#switchport trunk encap dot1q
GW(config-if)#switchport mode trunk
SW1(config)#interface fas0/3
SW1(config-if)#switchport mode trunk
4、验证与测试
GW# show ip interface brief
GW# show ip route
GW# show interface trunk
注意:
任何一个 VLAN 都对应一个 SVI(交换虚拟端口);
该VLAN中的所有的成员主机的网关IP地址都为该 SVI
口配置的 IP 地址;
SVI:switch virtual interface ;
====================================================
动态路由协议
-路由类型
C
非C
Static
Dynamic
IGP(internal gateway protocol)
Distance Vector
-RIP
-IGRP
-EGIRP
Links State
-ISIS
-OSPF(open shortest path first)
EGP(external gateway protocol)
-BGP
本文出自 “13450572” 博客,请务必保留此出处http://13460572.blog.51cto.com/13450572/1981386
原文地址:http://13460572.blog.51cto.com/13450572/1981386