how can we block remote desktop for some user from cisco
router through aaccess-list
Answers were Sorted based on User's Feedback
Answer / jitendra
I think this should be command are you agree with this or not
router(config)#access-list 101 deny tcp 10.0.0.0 255.0.0.0 host 172.16.100.10 eq 3389
router(config)#access-list 101 permit tcp any any
router(config)#access-list 101 permit icmp any any
router(config)#interface gi0/0
router(config-if)#ip access-group 101 out
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / sudhir.sancheti
HI,
I think It will work, as u r smartly blocking access for the service to the desired users.
need to confirm the port no of the service and the Interface on which u are going to apply the ACL
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jitendra
Hi Dharemendara
i am not asking about telnet access
look the problem like that we have a router which is core router from this core router another router is connected through serial interface and gigabyte Ethernet interface.the one router which is connected through the s0 of core router having the fa/0/0 ip 10.x.x.x
now from the core router g1/0 one switch is connected from that switch min e server 172.16.20.5 is connected
right now ever user can take the remote desktop of particular server but i want to block this mstsc (remote desktop)for some user which a hveing ip of 10.x.x.x series
now tell me how can we do it.
i need to this work very soon plz reply as soon as possible
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ankit singla
router>enable
router#config terminal
router(config)#access-list 101 deny tcp 10.10.10.0
0.0.0.255 10.10.20.0 0.0.0.255 eq 21
router(config)#access-list 101 permit tcp any any
router(config)#interface fastethernet 0/0
router(config-if)#ip access-group 101 in
router(config-if)#exit
router(config)#
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / dharmendra kumar soni
Hi
Remotely accessing routers is through of telnet gives us
easy access to our routers from almost anywhere. This is
done through the use of access control lists standard access
list
r1(config)#access-list 10 permit 10.10.206.3 255.255.255.255
r1(config)#access-list 10 permit 10.10.206.4 255.255.255.255
r1(config)#access-list 10 deny any
r1(config)#line vty 0 4
r1(config)#access-class 10 in
in above command restricted to telnet command particular two
ip add that means two can't access anything else
| Is This Answer Correct ? | 2 Yes | 3 No |
Explain dhcp scope?
Can yo define LNS
The following commands were entered at the command prompt of a Cisco router. What do they accomplish? access-list 1000 deny 9e.1234.5678.1212 4 access-list 1000 permit -1 interface ethernet 0 ipx network 9e interface ethernet 1 ipx network 4a interface serial 0 ipx network 1 ipx output-sap-filter 1000 A. File server advertisements from server 9e.1234.5678.1212 will not be forwarded on interface S0. B. All other SAP services, other than file server, from any source will be forwarded on S0. C. All other SAP services, other than print server, from any source will be forwarded on S0. D. Print server advertisements from server 9e.1234.5678.1212 will not be forwarded on interface S0.
Identify the following components of the IPX address 2e.0000.0065.ed43 A.) Not a valid IPX address B.) Network = 2e, Subnet = 0000, Node = 0065.ed43 C.) Network = 2e.0000, Node = 0065.ed43 D.) Network = 2e, Node = 0000.0065.ed43
Why twist in twisted pairs?
What is Transport and Tunnel mode?
Identify the command that displays the SAP table? A.) show ipx servers B.) display SAP table C.) display SAP's D.) show sap table
Identify 3 characteristics regarding IP access-lists? A.) Can be configured as a standard access-list B.) Can be run from another router running IP C.) Can be configured as a named access-list D.) Are the same as IPX access-lists E.) Can be configured as an extended access-list
What does eq means?
What command can be used to test IPX connectivity? A.) Ping 2e.000.0045.8923 B.) Ping 192.168.100.1 C.) Ping ipx 2e.0000.0045.8923 D.) Ipx ping 2e.0000.0045.8923
Which layer is responsible for putting 1s and 0s into a logical group? A.) Session B.) Application C.) Transport D.) Data Link E.) Physical F.) Network
How to see the running-config & startup-config infor from global configuration mode. As we know, from priviledge mode we cn see it by executing command. i.e. Router#show running-config and Router#show startup-config Now wat is the coommands use in global configuration mode o see those info. Router(Config)# ??????