Link to home
Start Free TrialLog in
Avatar of mesican
mesican

asked on

Cisco 2514 and Wireless

I have my Cisco 2514 hooked up to a wireless antenna that is 10mb hulf duplex. Do i need to do any special configurations besides the ip addess and subnet mask. I hooked it up to my smc and it worked fine, but with the cisco it will not work.
Avatar of mesican
mesican

ASKER

I can also recieve broadcast. If that helps any. Here is my config:

ip subnet-zero
no ip source-route
no ip finger
no ip bootp server
ip name-server 172.16.8.4

interface Ethernet0
 ip address 10.20.20.137 255.255.255.0
 ip access-group 101 in
 ip nat outside
 no ip directed-broadcast
 no ip route-cache
 no ip mroute-cache
 no cdp enable
exit

interface Ethernet1
 ip address 172.16.8.1 255.255.255.0
 ip access-group 100 in
 ip nat inside
 no ip directed-broadcast
 no ip route-cache
 no ip mroute-cache
 no cdp enable
exit

interface Serial0
 shutdown
 no ip address
 no ip directed-broadcast
 no ip route-cache
 no ip mroute-cache
 no cdp enable
exit

interface Serial1
 shutdown
 no ip address
 no ip directed-broadcast
 no ip route-cache
 no ip mroute-cache
 no cdp enable
exit

ip nat inside source list 1 interface Ethernet0 overload
ip nat inside source static tcp 172.16.8.3 80 10.20.20.137 80 extendable
ip nat inside source static tcp 172.16.8.4 53 10.20.20.137 53 extendable
ip nat inside source static udp 172.16.8.4 53 10.20.20.137 53 extendable
ip nat inside source static tcp 172.16.8.5 25 10.20.20.137 25 extendable
ip nat inside source static tcp 172.16.8.5 80 10.20.20.137 8080 extendable
ip nat inside source static tcp 172.16.8.5 110 10.20.20.137 110 extendable
ip route 0.0.0.0 0.0.0.0 10.20.20.1 permanent
ip classless

logging source-interface Ethernet1
access-list 1 permit 172.16.8.0 0.0.0.255
access-list 100 permit ip any any
access-list 101 deny   ip any host 255.255.255.255
access-list 101 permit tcp any any established
access-list 101 permit tcp any any eq www
access-list 101 permit udp any eq isakmp any eq isakmp
access-list 101 permit tcp any any eq 1723
access-list 101 permit tcp any eq domain any
access-list 101 permit udp any eq domain any
access-list 101 permit tcp any any eq smtp
access-list 101 permit tcp any any eq 8080
access-list 101 permit tcp any any eq pop3

ASKER CERTIFIED SOLUTION
Avatar of chicagoan
chicagoan
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mesican

ASKER

I figured it out, Thanks though