Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > Multiple IP's on Cisco 1750

Reply
Thread Tools

Multiple IP's on Cisco 1750

 
 
JerryZ
Guest
Posts: n/a
 
      06-18-2006
Hello,

I have a Cisco 1750 with a WIC-1ENET connected to the Internet via an ISP
provided DSL modem using PPPOE to do so.
The ISP recently provided us with multiple IP's.
The IP assigned for the PPPOE session is XXX.XXX.8.249 with a netmask of
255.255.255.0, the IP's we have available are 8 but on a different subnet,
XXX.XXX.3.16 to XXX.XXX.3.23 mask is 255.255.255.0 they state the gateway is
XXX.XXX.8.1

The Cisco Ethernet0 is connected via pppoe easy IP and correctly negotiates
a session
The FastEthernet0 has IP 192.168.0.1 assigned and using NAT option (Use WAN
interface address for dynamic source address translation) all the hosts
inside are able to surf the web. All the hosts inside have their IP fixed on
the 192.168.0.x subnet.
I also left a DHCP server running with addresses 192.168.0.100 - 150 so that
roaming machines can connect with auto settings on their network cards.

I need to create fixed routes between some of my inside machines and the
fixed IP's I have available so that they can be accessed from the internet,
Basically I need to be able to use DNS to be able to connect via the
internet to the internal machines.
one of them is a DVR server and being able to monitor it from the web is a
necessity. also to be able to connect to some of the internal hosts to run
VNC servers on them and be able for their users to connect to them is the
other requirement.


Here follows the current IOS configuration:

Is there a way to acomplish this? please help.
Thanks for your help

Jerry


!
service timestamps debug uptime
service timestamps log uptime
service password-encryption
no service tcp-small-servers
no service udp-small-servers
!
hostname Cisco1750
!
enable password xxxxxxxxxxxxxxxxxxxxx
!
ip name-server yyy.yyy.yyy.yyy
!
ip subnet-zero
ip domain-lookup
ip routing
vpdn enable
no vpdn logging
!
vpdn-group pppoe
request-dialin
protocol pppoe
!
interface Dialer 1
description connected to Internet
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
dialer-group 2
dialer pool 1
ppp authentication chap pap callin
ppp chap hostname xxxxxxxxxxxxxxxxxxxxxxxxxx
ppp chap password xxxxxxxxxxxxxxx
ppp pap sent-username xxxxxxxxxxxxxxxx password xxxxxxxxxxxx
!
interface FastEthernet 0
no shutdown
description connected to EthernetLAN
ip address 192.168.0.1 255.255.255.0
ip nat inside
keepalive 10
ip tcp adjust-mss 1452
!
interface Ethernet 0
no shutdown
description connected to Internet
no ip address
no keepalive
pppoe enable
pppoe-client dial-pool-number 1
!
! Access Control List 1
!
no access-list 1
access-list 1 permit 192.168.0.0 0.0.0.255
!
! Dialer Control List 2
!
no dialer-list 2
dialer-list 2 protocol ip permit
!
! Dynamic NAT
!
ip nat translation timeout 86400
ip nat translation tcp-timeout 86400
ip nat translation udp-timeout 300
ip nat translation dns-timeout 60
ip nat translation finrst-timeout 60
ip nat inside source list 1 interface Dialer 1 overload
!
! DHCP Server
!
service dhcp
ip dhcp excluded-address 192.168.0.1 192.168.0.100
ip dhcp excluded-address 192.168.0.151 192.168.0.254
ip dhcp pool 1
network 192.168.0.0 255.255.255.0
default-router 192.168.0.1
dns-server xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy
!
router rip
version 2
network 192.168.0.0
passive-interface Dialer 1
no auto-summary
!
!
ip classless
!
! IP Static Routes
ip route 0.0.0.0 0.0.0.0 Dialer 1
no ip http server
snmp-server community public RO
snmp-server location xxxxxxxxxxxxxxxxxxxxxxxxxxx
snmp-server contact xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.com
!
line console 0
exec-timeout 0 0
password xxxxxxxxxxxxxxxxxxxxx
login
!
line vty 0 4
password xxxxxxxxxxxxxxxxxxx
login
!
end


 
Reply With Quote
 
 
 
 
Christopher W.
Guest
Posts: n/a
 
      06-22-2006
I am glaid that I am not the only one who is wondering how to do
this!!!!!!!!!





JerryZ wrote:
> Hello,
>
> I have a Cisco 1750 with a WIC-1ENET connected to the Internet via an ISP
> provided DSL modem using PPPOE to do so.
> The ISP recently provided us with multiple IP's.
> The IP assigned for the PPPOE session is XXX.XXX.8.249 with a netmask of
> 255.255.255.0, the IP's we have available are 8 but on a different subnet,
> XXX.XXX.3.16 to XXX.XXX.3.23 mask is 255.255.255.0 they state the gateway is
> XXX.XXX.8.1
>
> The Cisco Ethernet0 is connected via pppoe easy IP and correctly negotiates
> a session
> The FastEthernet0 has IP 192.168.0.1 assigned and using NAT option (Use WAN
> interface address for dynamic source address translation) all the hosts
> inside are able to surf the web. All the hosts inside have their IP fixed on
> the 192.168.0.x subnet.
> I also left a DHCP server running with addresses 192.168.0.100 - 150 so that
> roaming machines can connect with auto settings on their network cards.
>
> I need to create fixed routes between some of my inside machines and the
> fixed IP's I have available so that they can be accessed from the internet,
> Basically I need to be able to use DNS to be able to connect via the
> internet to the internal machines.
> one of them is a DVR server and being able to monitor it from the web is a
> necessity. also to be able to connect to some of the internal hosts to run
> VNC servers on them and be able for their users to connect to them is the
> other requirement.
>
>
> Here follows the current IOS configuration:
>
> Is there a way to acomplish this? please help.
> Thanks for your help
>
> Jerry
>
>
> !
> service timestamps debug uptime
> service timestamps log uptime
> service password-encryption
> no service tcp-small-servers
> no service udp-small-servers
> !
> hostname Cisco1750
> !
> enable password xxxxxxxxxxxxxxxxxxxxx
> !
> ip name-server yyy.yyy.yyy.yyy
> !
> ip subnet-zero
> ip domain-lookup
> ip routing
> vpdn enable
> no vpdn logging
> !
> vpdn-group pppoe
> request-dialin
> protocol pppoe
> !
> interface Dialer 1
> description connected to Internet
> ip address negotiated
> ip mtu 1492
> ip nat outside
> encapsulation ppp
> dialer-group 2
> dialer pool 1
> ppp authentication chap pap callin
> ppp chap hostname xxxxxxxxxxxxxxxxxxxxxxxxxx
> ppp chap password xxxxxxxxxxxxxxx
> ppp pap sent-username xxxxxxxxxxxxxxxx password xxxxxxxxxxxx
> !
> interface FastEthernet 0
> no shutdown
> description connected to EthernetLAN
> ip address 192.168.0.1 255.255.255.0
> ip nat inside
> keepalive 10
> ip tcp adjust-mss 1452
> !
> interface Ethernet 0
> no shutdown
> description connected to Internet
> no ip address
> no keepalive
> pppoe enable
> pppoe-client dial-pool-number 1
> !
> ! Access Control List 1
> !
> no access-list 1
> access-list 1 permit 192.168.0.0 0.0.0.255
> !
> ! Dialer Control List 2
> !
> no dialer-list 2
> dialer-list 2 protocol ip permit
> !
> ! Dynamic NAT
> !
> ip nat translation timeout 86400
> ip nat translation tcp-timeout 86400
> ip nat translation udp-timeout 300
> ip nat translation dns-timeout 60
> ip nat translation finrst-timeout 60
> ip nat inside source list 1 interface Dialer 1 overload
> !
> ! DHCP Server
> !
> service dhcp
> ip dhcp excluded-address 192.168.0.1 192.168.0.100
> ip dhcp excluded-address 192.168.0.151 192.168.0.254
> ip dhcp pool 1
> network 192.168.0.0 255.255.255.0
> default-router 192.168.0.1
> dns-server xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy
> !
> router rip
> version 2
> network 192.168.0.0
> passive-interface Dialer 1
> no auto-summary
> !
> !
> ip classless
> !
> ! IP Static Routes
> ip route 0.0.0.0 0.0.0.0 Dialer 1
> no ip http server
> snmp-server community public RO
> snmp-server location xxxxxxxxxxxxxxxxxxxxxxxxxxx
> snmp-server contact xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.com
> !
> line console 0
> exec-timeout 0 0
> password xxxxxxxxxxxxxxxxxxxxx
> login
> !
> line vty 0 4
> password xxxxxxxxxxxxxxxxxxx
> login
> !
> end


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cisco 1750 Router Cisco QoS Device Manager Cisco VPN Device Manager Rene Kuhn Cisco 0 12-28-2005 08:45 PM
get log in Cisco 1750 william Cisco 1 06-01-2005 06:39 PM
Copying configuration from Cisco 1750 Amit Kaushal Cisco 2 04-26-2005 07:14 AM
Problem with Cisco 1750 Sairam Cisco 2 01-19-2005 03:59 PM
Cisco 1750 bandwidth monitor? Alex Cisco 4 05-08-2004 10:17 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57