Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Latest Threads
3rd times the charm! PASS...
Forum: CCNP ENCOR 350-401 Forum
Last Post: sgtwardo
Yesterday, 06:20 PM
» Replies: 2
» Views: 3,557
QID:AN1000
Forum: Answer this question
Last Post: help_desk
10-17-2025, 10:47 AM
» Replies: 1
» Views: 157
QID:AND84
Forum: Answer this question
Last Post: help_desk
10-16-2025, 09:38 AM
» Replies: 1
» Views: 188
CML YAML Files - Not work...
Forum: CCNP ENCOR 350-401 Forum
Last Post: help_desk
10-11-2025, 12:15 PM
» Replies: 1
» Views: 310
Passed ENSARI - My Recomm...
Forum: CCNP ENARSI 300-410 Forum
Last Post: chewosaurus
10-06-2025, 02:26 PM
» Replies: 1
» Views: 1,082
How2Pass 200-201 CBROPS C...
Forum: Cybersecurity Associate - CBROPS 200-201 Forum
Last Post: forumsupport
10-05-2025, 06:32 PM
» Replies: 0
» Views: 214
CCNP 300-101 Questions
Forum: General Discussion
Last Post: ncc16ncc
10-03-2025, 10:31 AM
» Replies: 6
» Views: 22,090
Missing pka file 802.1Q T...
Forum: Answer this question
Last Post: help_desk
09-29-2025, 11:36 AM
» Replies: 1
» Views: 689
IPv4 and IPv6 Assignment ...
Forum: Answer this question
Last Post: help_desk
09-29-2025, 11:21 AM
» Replies: 1
» Views: 694
PBR and Redistribution Si...
Forum: CCNP ENARSI 300-410 Forum
Last Post: greaterzen1
09-24-2025, 04:47 PM
» Replies: 0
» Views: 1,023

 
  AR595 Incorrect exhibit, Nothing wrong with configs
Posted by: pc_evans - 03-02-2024, 07:25 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

The exhibit showing pings has wrong destinations.  Should be pinging 10.1.1.x not 10.1.2.x

Diagram shows Client on the 10.1.2.0/24 network.  but R2 fa 0/1 is configured for 10.1.1.1/24.  

This question is also a bad example of summarization.  R2 sees 10.1.1.0/24 as directly connected and connects to 10.1.2.0/24 using the summary router 10.0.0.0/8.  R1 performs the same.  

I am not sure what the problem is here but it is not caused by auto-summarization. Full network connectivity exists with the current configuration.

PC1> trace 10.1.2.10
trace to 10.1.2.10, 8 hops max, press Ctrl+C to stop
1  10.1.1.1  0.260 ms  0.107 ms  0.140 ms
2  192.168.1.1  0.365 ms  0.299 ms  0.376 ms
3  *10.1.2.10  0.427 ms (ICMP type:3, code:3, Destination port unreachable)

PC1>


R1#show ip route 10.0.0.0
Routing entry for 10.0.0.0/8, 4 known subnets
  Attached (2 connections)
  Variably subnetted with 3 masks
  Redistributing via eigrp 10
D        10.0.0.0/8 is a summary, 00:06:23, Null0
C        10.1.1.0/24 is directly connected, Ethernet0/1
L        10.1.1.1/32 is directly connected, Ethernet0/1
D        10.1.2.0/24 [90/307200] via 192.168.1.1, 00:05:29, Ethernet0/0
R1#

Print this item

  AR478 incorrect
Posted by: pc_evans - 03-02-2024, 06:46 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

1. you cant really configgure SSH service on a cisco device. You can configure SSH, you can allow it on the VTY Lines.  You can force it to user v1 or v2 but there is no command to configure it as a service.  If SSH was misconfigured you would not get a prompt for a password.


2. If Transport input SSH/ALL is not configured on the line, you will get connection refused.  Not a prompt for a password.

user@user-pc:~$ ssh admin@198.51.100.64
ssh: connect to host 198.51.100.64 port 22: Connection refused


3. If telnet was requiring local database with username/password for authenticaiton, it would prompt for a user name.

user@user-pc:~$ telnet 198.51.100.64
Trying 198.51.100.64
Connected to 198.51.100.64.
Escape character is '^]'.


User Access Verification

Username: admin
Password:
R1>


4. If the vty lines are not configured for local authentication, telnet will work because of the following config

line vty 0 4
login
password admin

SSH attempts will experience an authentication failure without login local configured on the vty lines.

Print this item

  AR537
Posted by: pc_evans - 03-02-2024, 06:03 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

R1#sh run | inc snmp
mmi snmp-timeout 180
R1#
R1#
R1#
R1#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#snmp-server community ccnp
R1(config)#
R1(config)#do sh snmp community

Community name: ILMI
Community Index: ILMI
Community SecurityName: ILMI
storage-type: read-only  active


Community name: ccnp
Community Index: ccnp
Community SecurityName: ccnp
storage-type: nonvolatile        active



Adding the command, 'snmp-server host 172.16.4.4 ccnp' has no impact on the output of 'show snmp community'.  There is no way to tell from the question if the command is present.



R1(config)#snmp-server host 172.16.4.4 ccnp
R1(config)#
R1(config)#
R1(config)#do sh snmp community

Community name: ILMI
Community Index: ILMI
Community SecurityName: ILMI
storage-type: read-only  active


Community name: ccnp
Community Index: ccnp
Community SecurityName: ccnp
storage-type: nonvolatile        active


The command snmp-server community ccnp 4 is present.  It requries the snmp server to only allow hosts permitted in access-list 4.


R1(config)#snmp-server community ccnp ?
  <1-99>      Std IP accesslist allowing access with this community string
  <1300-1999>  Expanded IP accesslist allowing access with this community
              string
  WORD        Access-list name
  ipv6        Specify IPv6 Named Access-List
  ro          Read-only access with this community string
  rw          Read-write access with this community string
  view        Restrict this community to a named MIB view
  <cr>

R1(config)#snmp-server community ccnp 4
R1(config)#
R1(config)#do sh snmp community

Community name: ILMI
Community Index: ILMI
Community SecurityName: ILMI
storage-type: read-only  active


Community name: ccnp
Community Index: ccnp
Community SecurityName: ccnp
storage-type: nonvolatile        active access-list: 4


R1(config)#

Print this item

  Passed the exam today
Posted by: knighthawk - 02-27-2024, 09:44 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (3)

The questions in the practice test were exact.   3 out of the 4 Sims were also on the exam.  There was one Sim that almost tripped me up.   It is not in the practice test.  It references aaa authentication.    Smile

Print this item

  AR306
Posted by: pc_evans - 02-25-2024, 08:18 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

Why is address-family ipv6 multicast the correct answer?

Shouldn't the correct answer be 

router bgp 65000
no bgp default ipv4-unicast
address-family ipv6 unicast
network 2001:db8::/64

Print this item

  AR223
Posted by: pc_evans - 02-25-2024, 07:50 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

Configuring R1 as a route reflector server  and configuring R4 as a client is not possible.

R1 does not have a neighbor relationship with R4, if it did we wouldn't have a  problem.

Since there is no neighbor relationship between R1 and R4, it is impossible to enter the command.

R1(config-router)# neighbor <R4> router-reflector-client

Print this item

  AR110
Posted by: pc_evans - 02-25-2024, 07:30 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (2)

Where is the distribute list seq 10 rule? Do you mean route-map seq 10?

Print this item

  ar413
Posted by: pc_evans - 02-24-2024, 09:42 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

I believe this question is misworded.  Should be IPv6 DHCP Guard. I am unable to find any reference to IPv4 DHCP Guard.


https://www.examtopics.com/discussions/c...iscussion/

https://www.cisco.com/c/en/us/td/docs/io...-guard.pdf

Print this item

  AR336
Posted by: pc_evans - 02-24-2024, 09:38 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

Correct answer is to configure to permit TCP ports higher than 1023.

Passive FTP is an FTP mode that can be requested by a client to alleviate the issues caused by client-side firewalls. Both the server and the client must support passive FTP for this process to work. When passive FTP is used, the client will initiate the connection to the server. This process is effective because most firewalls allow inbound traffic from sessions initiated by the client.   A passive FTP connection follows the following process:

  1. The client sends the PASV command to an FTP server on port 21. The source port is a random, high-numbered port. The destination port is 21.
  2. The server responds with the PORT command. The port command specifies a random, high-numbered (ephemeral) port that the client can connect to.
  3. The client initiates a connection to the server on this ephemeral port.
  4. The server responds with an ACK. The FTP session has now been established
 
Because the client initiates all connections, the client firewall will not block any traffic, as shown below:

https://documentation.meraki.com/MX/NAT_...%20is%2021.

Print this item

  AR224
Posted by: pc_evans - 02-24-2024, 09:26 PM - Forum: CCNP ENARSI 300-410 Forum - Replies (1)

The command 'ip dhcp relay information enable' does not exist

service dhcp enables dhcp server AND RELAY AGENT

Print this item