3dsmax2012材质贴图:怎样进行路由器配置呢?

来源:百度文库 编辑:中科新闻网 时间:2024/04/29 18:50:38
1、ISP提供的访问Internet时使用的IP地址(固定)为221.90.134.33,对就网关为:221.90.134.133;
2、使用CISCO2621路由器完成共享上网和映射;路由器IP地址为:192.168.0.250;
3、服务器连接在3Com(3300SM)交换机上,交换机与路由器连接;交换机的IP地址设置为192.168.0.251;
4、有两台服务器,分别提供Web和FTP服务,IP地址分别为192.168.0.1和192.168.0.2,网关均为192.168.0.250(路由器IP地址);

问题:如何进行路由器配置,可以实现路由器下计算机可以通过其上互联网、互联网用户可以通过221.90.134.33访问到Web和FTP服务器上的相关内容。
Current configuration:
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
hostname Router
enable secret 5 *******************
enable password **********
ip subnet-zero
!
interface Ethernet0/0
ip address 221.90.134.33 255.255.255.252
no ip directed-broadcast
ip nat o
!
interface Ethernet0/1
ip address 192.168.0.250 255.255.255.0
no ip directed-broadcast
ip nat inside
!
ip nat inside source list 2 interface Ethernet0/0 overload
ip nat inside source static tcp 192.168.0.1 80 221.90.134.33 80 extendable
ip nat inside source static tcp 192.168.0.2 21 221.90.134.33 21 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 221.194.21.133
!
access-list 2 permit any
!
line con 0
exec-timeout 1 0
transport input none
line aux 0
line vty 0 4
password **********
login
!
end
* 示意图:http://www.nolort.com/jx/syt.jpg
* 请写出具体命令。

你可以去下载一个模拟器..
慢慢学着配置.