cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
497
Views
0
Helpful
3
Replies

Trouble configuring 2901 Router...

Ryan MacNeille
Level 1
Level 1

Hey guys & gals. I'm a noob with Cisco stuff and I'm fumbling my way through setting up this new router. I'm just trying to get nodes on the gi0/0 interface to access the internet. What am I missing?

 

Running config attached.

3 Replies 3

rizwanr74
Level 7
Level 7

Your ACL 101 should look like this?


ip access-list extended 101
 permit ip 10.10.10.0 255.255.255.248  any

 

You don't need ACL in the inside interfaces, which are secure interfaces, so please remove them

 

interface GigabitEthernet0/0
 no ip access-group allowall in
 no ip access-group allowall out

 

Now, where is your routed interface 10.10.10. 1?

 

default-router 10.10.10.1 

Thank you very much for the help. The 10.10.10.0 network was on the router by default - I'm not using it.

I just have 0/0 as 6.1 for my internal network and 0/1 as my static WAN. All I need to do is route 6.0 traffic through to the internet.

"The 10.10.10.0 network was on the router by default - I'm not using it."

If you are not using it, why do you have a dhcp pool coming off that network?

 

Make your ACL 101, look like this...

ip access-list extended 101
 permit ip 192.168.6.0 255.255.255.0  any

 

You don't need ACL in the inside interfaces, which are secure interfaces, so please remove them.


interface GigabitEthernet0/0
 no ip access-group allowall in
 no ip access-group allowall out