I have a Cisco 827 DSL Modem/Router in front of IIS running a public web page. I have a half a dozen internal computers networked together using the 10.10.10.x IP scheme. 10.10.10.1 is assigned to the router, 10.10.10.2 is assigned to a web site, and 10.10.10.240 is assigned to a network printer. All other computers are set to receive IP's dynamically. My public website address is 65.100.222.186. It's a public address in the terms that it's available over the internet, but the application on it is private to my customers only. In other words, it's not PUBLIC in every sense of the word.
Everything works fine, but I have a few questions. The tech who set this up for me is no longer available to assist me and Qwest is not supporting this router because it is not standard router they issue to their customers.
Here is my config.
show run
Building configuration...
Current configuration:
!
! No configuration change since last restart
!
version 12.1
no service pad
service timestamps debug datetime msec localtime
service timestamps log datetime msec localtime
no service password-encryption
!
hostname Router
!
enable secret *******
enable password *******
!
!
!
!
!
clock timezone PST -8
clock summer-time PDT recurring
ip subnet-zero
ip name-server 206.81.128.1
ip name-server 204.147.80.5
ip dhcp excluded-address 10.10.10.1
ip dhcp excluded-address 10.10.10.2
ip dhcp excluded-address 10.10.10.240
!
ip dhcp pool PETRO
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
domain-name qwest.net
dns-server 206.81.128.1 204.147.80.5
lease 5
!
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
ip access-group 110 out
ip nat inside
!
interface ATM0
no ip address
no atm ilmi-keepalive
pvc 0/32
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
bundle-enable
dsl operating-mode auto
hold-queue 224 in
!
interface Dialer1
ip address 65.100.222.190 255.255.255.248
ip nat outside
encapsulation ppp
dialer pool 1
ppp pap sent-username *******
!
ip nat inside source list 1 interface Dialer1 overload
ip nat inside source static 10.10.10.2 65.100.222.186
ip classless
ip route 0.0.0.0 0.0.0.0 65.100.205.254
no ip http server
!
access-list 1 permit 10.10.10.0 0.0.0.255
access-list 110 deny tcp any any range 137 139
access-list 110 permit ip any any
!
line con 0
transport input none
stopbits 1
line vty 0 4
password ******
login
!
sntp server 128.101.101.101
scheduler max-task-time 5000
end
Here are my questions.
#1: What do the following statements mean ?
access-list 1 permit 10.10.10.0 0.0.0.255
access-list 110 deny tcp any any range 137 139
access-list 110 permit ip any any
#2: How can I configure my router to deny HTTP requests from a specific IP address or IP range or a combination of both. Reason being is that my server is being bombed with Code Red attacks, which we are handling with IIS, but I would like to block those IP's at the router so they don't even make it to the server.
I'm a beginner with Cisco OS and as of now, the only thing I know how to do is get logged into the router via HyperTerminal. If you could provide command line help, I would greatly appreciate it.
Thanks a million.
TW
Everything works fine, but I have a few questions. The tech who set this up for me is no longer available to assist me and Qwest is not supporting this router because it is not standard router they issue to their customers.
Here is my config.
show run
Building configuration...
Current configuration:
!
! No configuration change since last restart
!
version 12.1
no service pad
service timestamps debug datetime msec localtime
service timestamps log datetime msec localtime
no service password-encryption
!
hostname Router
!
enable secret *******
enable password *******
!
!
!
!
!
clock timezone PST -8
clock summer-time PDT recurring
ip subnet-zero
ip name-server 206.81.128.1
ip name-server 204.147.80.5
ip dhcp excluded-address 10.10.10.1
ip dhcp excluded-address 10.10.10.2
ip dhcp excluded-address 10.10.10.240
!
ip dhcp pool PETRO
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
domain-name qwest.net
dns-server 206.81.128.1 204.147.80.5
lease 5
!
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
ip access-group 110 out
ip nat inside
!
interface ATM0
no ip address
no atm ilmi-keepalive
pvc 0/32
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
bundle-enable
dsl operating-mode auto
hold-queue 224 in
!
interface Dialer1
ip address 65.100.222.190 255.255.255.248
ip nat outside
encapsulation ppp
dialer pool 1
ppp pap sent-username *******
!
ip nat inside source list 1 interface Dialer1 overload
ip nat inside source static 10.10.10.2 65.100.222.186
ip classless
ip route 0.0.0.0 0.0.0.0 65.100.205.254
no ip http server
!
access-list 1 permit 10.10.10.0 0.0.0.255
access-list 110 deny tcp any any range 137 139
access-list 110 permit ip any any
!
line con 0
transport input none
stopbits 1
line vty 0 4
password ******
login
!
sntp server 128.101.101.101
scheduler max-task-time 5000
end
Here are my questions.
#1: What do the following statements mean ?
access-list 1 permit 10.10.10.0 0.0.0.255
access-list 110 deny tcp any any range 137 139
access-list 110 permit ip any any
#2: How can I configure my router to deny HTTP requests from a specific IP address or IP range or a combination of both. Reason being is that my server is being bombed with Code Red attacks, which we are handling with IIS, but I would like to block those IP's at the router so they don't even make it to the server.
I'm a beginner with Cisco OS and as of now, the only thing I know how to do is get logged into the router via HyperTerminal. If you could provide command line help, I would greatly appreciate it.
Thanks a million.
TW