05-05-2018 04:00 AM - edited 02-21-2020 07:42 AM
Hello
I want to create an access control list on a router that does the following:
1) access control list to deny all inbound traffic with network addresses matching internal-registered IP address
2) Deny all ICMP echo request traffic
3) Deny all inbound Microsoft Active Directory
4) Deny all inbound Microsoft SQL Server Ports
5) Deny all Microsoft Domain Local Broadcast
6) Allow traffic to SMTP server
7) Allow traffic to internal IMAP Server
I have to also remove this
ip nat inside source list 100 interface Serial1/0 overload from my start-up configuration
My Router0 configuration is as under:
Router#show run
Router#show running-config
Building configuration...
Current configuration : 1344 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
!
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface FastEthernet0/1
ip address 10.1.11.10 255.255.255.0
ip nat inside
duplex auto
speed auto
standby 1 ip 10.1.11.12
standby 1 priority 110
standby 1 preempt
!
interface Serial1/0
ip address 203.1.1.2 255.255.255.0
ip nat outside
!
interface Serial1/1
no ip address
clock rate 2000000
shutdown
!
interface Serial1/2
no ip address
clock rate 2000000
shutdown
!
interface Serial1/3
no ip address
clock rate 2000000
shutdown
!
interface Serial1/4
no ip address
clock rate 2000000
shutdown
!
interface Serial1/5
no ip address
clock rate 2000000
shutdown
!
interface Serial1/6
no ip address
clock rate 2000000
shutdown
!
interface Serial1/7
no ip address
clock rate 2000000
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip nat inside source list 100 interface Serial1/0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 203.1.1.1
ip route 10.1.20.0 255.255.255.0 10.1.11.1
!
ip flow-export version 9
!
!
!
no cdp run
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
Solved! Go to Solution.
05-05-2018 09:02 AM
05-05-2018 09:07 AM
05-05-2018 09:10 AM
05-05-2018 09:17 AM
05-05-2018 09:23 AM
05-05-2018 09:31 AM
05-05-2018 09:40 AM
05-05-2018 09:47 AM
Please upload the running-config
05-05-2018 09:51 AM
05-05-2018 10:00 AM
05-05-2018 10:05 AM
05-05-2018 10:13 AM
If you run the command "show ip access-list WAN_ACL"
BRANCH-1-RTR(config)#do sh ip access-list WAN_ACL
Extended IP access list WAN_ACL
10 permit tcp any host 2.2.2.1 eq www (6 matches)
20 deny ip any any log (299 matches)
Have a look at the sequence numbers, you would then add a sequence number lower than 20, E.g:
BRANCH-1-RTR(config)#15 permit icmp any host 2.2.2.1
BRANCH-1-RTR#show ip access-lists WAN_ACL
Extended IP access list WAN_ACL
10 permit tcp any host 2.2.2.1 eq www (6 matches)
15 permit icmp any host 2.2.2.1 (4 matches)
20 deny ip any any log-input (327 matches)
05-05-2018 10:27 AM
05-05-2018 10:29 AM
05-05-2018 10:40 AM
Hello RJI I know this topic is different from this one but I shall be grateful if you kindly give me an idea
Attach is the image file showing server having two different NIC connected to two different Layer 2 switch. Now my query
1) How in packet tracer we can use NIC teaming in server
2) if suppose one link goes down how it can transfer it to other link as shown in the image file
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide