- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Re: Can't get internet traffic on 7102dl
Switches, Hubs, and Modems
1825002
Members
2799
Online
109678
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2009 11:52 AM
тАО02-05-2009 11:52 AM
Can't get internet traffic on 7102dl
guys,
I recently acquired a HP 7102dl router and tried the config but I cannot seem to get internet traffic.
Config: eth 0/1 - 192.168.xxx.xxx
eth 0/2: external wan address
I used the 'firewall' wizard to create the rules. if i login on the terminal side i can ping my internal, WAN and Gateway address but can't get anywhere from there.
Any ideas? I have 2 of these to do and then create a VPN between 2 sites... so any help will be appreciated.
I recently acquired a HP 7102dl router and tried the config but I cannot seem to get internet traffic.
Config: eth 0/1 - 192.168.xxx.xxx
eth 0/2: external wan address
I used the 'firewall' wizard to create the rules. if i login on the terminal side i can ping my internal, WAN and Gateway address but can't get anywhere from there.
Any ideas? I have 2 of these to do and then create a VPN between 2 sites... so any help will be appreciated.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2009 04:24 PM
тАО02-05-2009 04:24 PM
Re: Can't get internet traffic on 7102dl
Hi Rishi,
Here is a config that works for Internet access (Eth0/1 and eth0/2 are reversed from your setup). Don't know if you need dhcp etc.
Basically, you need NAT for it to work. This config also enables the ability to manage the router remotely (securely via SSH or HTTPS) via the internet. If you statically assign the ip address of the external interface, you also need to supply a static default route like: ip route 0.0.0.0/0. If you use DHCP on the external interface, it is automatically installed for you.
username x password y
ip firewall
no ip firewall alg msn
no ip firewall alg mszone
no ip firewall alg h323
!
ip dhcp-server database local
ip dhcp-server excluded-address 192.168.1.200 192.168.1.254
ip dhcp-server pool "Internal Network"
network 192.168.1.0 255.255.255.0
dns-server 192.168.1.254
netbios-node-type h-node
default-router 192.168.1.254
ntp-server 192.168.1.254
!
interface eth 0/1
description External
ip address x.x.x.x/24 or dhcp
access-policy Public
no lldp send-and-receive
!
!
interface eth 0/2
description Internal
ip address 192.168.1.254 255.255.255.0
access-policy Private
no shutdown
!
!
!
!
ip access-list standard wizard-ics
remark Internet Connection Sharing
permit any
!
!
ip access-list extended Allow_Remote
remark Allow SSH and HTTPS from remote
permit tcp any any eq ssh
permit tcp any any eq https
deny ip any any log
!
ip access-list extended self
remark Traffic to ProCurve SR
permit ip any any log
!
ip policy-class Private
allow list self self
nat source list wizard-ics interface eth 0/1 overload
!
ip policy-class Public
allow list Allow_Remote
!
!
!
no ip tftp server
no ip tftp server overwrite
no ip http server
ip http secure-server
ip snmp agent
no ip ftp server
ip sntp server
!
!
!
!
snmp-server community xxxx RO
snmp-server host 192.168.1.250 traps version 2c public
!
!
line con 0
no login
!
line telnet 0 4
login local-userlist
no shutdown
line ssh 0 4
login local-userlist
no shutdown
!
sntp server x.x.x.x
!
end
Here is a config that works for Internet access (Eth0/1 and eth0/2 are reversed from your setup). Don't know if you need dhcp etc.
Basically, you need NAT for it to work. This config also enables the ability to manage the router remotely (securely via SSH or HTTPS) via the internet. If you statically assign the ip address of the external interface, you also need to supply a static default route like: ip route 0.0.0.0/0
username x password y
ip firewall
no ip firewall alg msn
no ip firewall alg mszone
no ip firewall alg h323
!
ip dhcp-server database local
ip dhcp-server excluded-address 192.168.1.200 192.168.1.254
ip dhcp-server pool "Internal Network"
network 192.168.1.0 255.255.255.0
dns-server 192.168.1.254
netbios-node-type h-node
default-router 192.168.1.254
ntp-server 192.168.1.254
!
interface eth 0/1
description External
ip address x.x.x.x/24 or dhcp
access-policy Public
no lldp send-and-receive
!
!
interface eth 0/2
description Internal
ip address 192.168.1.254 255.255.255.0
access-policy Private
no shutdown
!
!
!
!
ip access-list standard wizard-ics
remark Internet Connection Sharing
permit any
!
!
ip access-list extended Allow_Remote
remark Allow SSH and HTTPS from remote
permit tcp any any eq ssh
permit tcp any any eq https
deny ip any any log
!
ip access-list extended self
remark Traffic to ProCurve SR
permit ip any any log
!
ip policy-class Private
allow list self self
nat source list wizard-ics interface eth 0/1 overload
!
ip policy-class Public
allow list Allow_Remote
!
!
!
no ip tftp server
no ip tftp server overwrite
no ip http server
ip http secure-server
ip snmp agent
no ip ftp server
ip sntp server
!
!
!
!
snmp-server community xxxx RO
snmp-server host 192.168.1.250 traps version 2c public
!
!
line con 0
no login
!
line telnet 0 4
login local-userlist
no shutdown
line ssh 0 4
login local-userlist
no shutdown
!
sntp server x.x.x.x
!
end
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 11:48 AM
тАО02-06-2009 11:48 AM
Re: Can't get internet traffic on 7102dl
I have tried the settings above, I had to clear the f/w settings but I still cannot get net Traffic.
I will give it another shot on Monday and keep you updated.
Thanks
I will give it another shot on Monday and keep you updated.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2009 03:03 PM
тАО02-06-2009 03:03 PM
Re: Can't get internet traffic on 7102dl
Rishi,
Please send config along next time so we can determine what is wrong.
Olaf
Please send config along next time so we can determine what is wrong.
Olaf
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP