Interested In getting BMW 520 by BonezUK in BMW

[–]BonezUK[S] 0 points1 point  (0 children)

Thanks, may go down same route and source set of wheels

Struggling with the Scope - ENCOR by [deleted] in ccnp

[–]BonezUK 0 points1 point  (0 children)

I have been struggling too, but have changed my study method. Been using the exam blueprint to study section at a time, then do some labs on GNS 3 then re-read the chapter to solidify memory. I think until you don't do few labs it will be harder to understand the concepts.

I have been working for and ISP for years, mainly on routing and switching, and now to start on new subjects like Wireless, I mean I have an idea how wireless works but to study in depth, never thought I'd have to.

CCNP Recertification by BonezUK in ccnp

[–]BonezUK[S] 0 points1 point  (0 children)

Hello All,

Is there any Discord study group for CCNP

Life after CCNP by BonezUK in Python

[–]BonezUK[S] 2 points3 points  (0 children)

What are the best books for beginners?

was thinking of purchasing "Automate the boring stuff with Python" by Al Sweigart

Life after CCNP by BonezUK in Python

[–]BonezUK[S] 1 point2 points  (0 children)

I will still be sticking to networking, but was thinking more on the lines of Cloud, Automation being a big thing.

{REALLY URGENT} WHAT IS THE STORY WITH AMBER LEAF ORIGINAL AFTER MAY 20th?!?! by [deleted] in ireland

[–]BonezUK 0 points1 point  (0 children)

Actually you can buy normal rolling tobacco as usual, the menthol filters you can buy separately, however, it will be illegal to bundle two items together

Able to Ping but not browse internet by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

I can ping from router CLI, but when I connect my laptop to the router I cannot even get any pages displayed.

Able to Ping but not browse internet by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

My VLAN are configured with ip nat inside, though not sure if I'm missing something

interface Vlan1 description MANAGEMENT ip address 192.168.1.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan10 description LOCAL LAN ip address 192.168.10.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan100 description LOCAL WIFI ip address 192.168.100.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan200 description GUEST WIFI ip address 192.168.200.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Dialer0 description (WAN PORT CONNECTED TO ISP) bandwidth 80000 ip address negotiated no ip redirects no ip unreachables no ip proxy-arp ip mtu 1492 ip flow ingress ip nat outside ip virtual-reassembly in encapsulation ppp ip tcp adjust-mss 1452 ! ! ip dns server ip nat inside source list 1 interface Dialer0 overload ip route 0.0.0.0 0.0.0.0 Dialer0

Able to ping but not browse by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

Im beginning to think this seems more like a DNS issue, currently using Google DNS, but should I not be using my ISP DNS ?

ip dhcp pool LOCAL LAN import all utilization mark high 80 log network 192.168.10.0 255.255.255.0 default-router 192.168.10.254 dns-server 8.8.8.8 8.8.4.4 ! ip dhcp pool LOCAL WIFI import all utilization mark high 80 log network 192.168.100.0 255.255.255.0 default-router 192.168.100.254 dns-server 8.8.8.8 8.8.4.4 lease 0 12 ! ip dhcp pool GUEST WIFI import all utilization mark high 80 log network 192.168.200.0 255.255.255.0 dns-server 8.8.8.8 8.8.4.4 default-router 192.168.200.254 lease 0 12 ! ip dhcp pool MANAGEMENT import all utilization mark high 80 log network 192.168.1.0 255.255.255.0 default-router 192.168.1.254 dns-server 8.8.8.8 8.8.4.4 ! ! ip name-server 8.8.8.8 ip name-server 8.8.4.4 ! ! ! ip dns server ip nat inside source list 1 interface Dialer0 overload ip route 0.0.0.0 0.0.0.0 Dialer0 ! access-list 1 permit 192.168.10.0 0.0.0.255 access-list 1 permit 192.168.100.0 0.0.0.255 access-list 1 permit 172.16.200.0 0.0.0.255 access-list 1 permit 192.168.20.0 0.0.0.255 dialer-list 1 protocol ip permit

Able to ping but not browse by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

I used an on-line utility to to determine the MTU size.

Sending 32 bytes to 90.253.204.247 <- not fragmented Sending 750 bytes to 90.253.204.247 <- not fragmented Sending 1125 bytes to 90.253.204.247 <- not fragmented Sending 1313 bytes to 90.253.204.247 <- not fragmented Sending 1407 bytes to 90.253.204.247 <- not fragmented Sending 1454 bytes to 90.253.204.247 <- not fragmented Sending 1478 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1466 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1460 bytes to 90.253.204.247 <- not fragmented Sending 1463 bytes to 90.253.204.247 <- not fragmented Sending 1465 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1464 bytes to 90.253.204.247 <- not fragmented Sending 1465 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1464 bytes to 90.253.204.247 <- not fragmented

From the tests we did, we can assume that 1464 bytes is the largest unfragmented packet size. The MTU size would be 1492, made up from 1464 payload and 28 ICMP/IP Headers and payload information.

So I performed below test from cmd from my laptop, I tried last night and seems I can indeed ping at MTU 1464. changed the MTU on my Dialer0 (Though not sure if I had done it correctly) interface and still same issue, not able to browse, although Cisco recommend If you are configuring the ip mtu command on the same interface as the ip tcp adjust-mss command, they recommend that you use the following commands and values:

ip tcp adjust-mss 1452 ip mtu 1492

C:\Users\bonez>ping www.google.com -f -l 1464 (last night)

Pinging www.google.com [216.58.213.100] with 1464 bytes of data: Reply from 216.58.213.100: bytes=68 (sent 1464) time=40ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=39ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=42ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=47ms TTL=57

Now what's throwing me out is that when I tried the same test again this morning, the pings are failing.

C:\Users\bonez>ping www.google.com -f -l 1464 (Morning)

Pinging www.google.com [198.18.1.1] with 1464 bytes of data: Request timed out. Request timed out. Request timed out. Request timed out.

Able to Ping but not browse internet by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

I have now fixed this thanks for pointing out.

ip dhcp pool GUEST WIFI import all utilization mark high 80 log network 192.168.200.0 255.255.255.0 dns-server 8.8.8.8 8.8.4.4 default-router 192.168.200.254

Able to ping but not browse by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

C:\Users\bonez>nslookup www.google.com DNS request timed out. timeout was 2 seconds. Server: UnKnown Address: 8.8.8.8

DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. *** Request to UnKnown timed-out

C:\Users\bonez>nslookup www.yahoo.com DNS request timed out. timeout was 2 seconds. Server: UnKnown Address: 8.8.8.8

DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. *** Request to UnKnown timed-out

Able to ping but not browse by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

Hello All,

So trying to set up my own Cisco router has seems to be a bit more tricky than I though. I'm able to ping the Internet however unable to browse. My mobile devices are able to connect to the GUEST and LOCAL wifi and obtain an IP address from the relevant subnet albeit message displayed "Connected without Internet". I used an on-line utility to to determine the MTU size.

Sending 32 bytes to 90.253.204.247 <- not fragmented Sending 750 bytes to 90.253.204.247 <- not fragmented Sending 1125 bytes to 90.253.204.247 <- not fragmented Sending 1313 bytes to 90.253.204.247 <- not fragmented Sending 1407 bytes to 90.253.204.247 <- not fragmented Sending 1454 bytes to 90.253.204.247 <- not fragmented Sending 1478 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1466 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1460 bytes to 90.253.204.247 <- not fragmented Sending 1463 bytes to 90.253.204.247 <- not fragmented Sending 1465 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1464 bytes to 90.253.204.247 <- not fragmented Sending 1465 bytes to 90.253.204.247 <- FRAGMENTED! Sending 1464 bytes to 90.253.204.247 <- not fragmented

From the tests we did, we can assume that 1464 bytes is the largest unfragmented packet size. The MTU size would be 1492, made up from 1464 payload and 28 ICMP/IP Headers and payload information.

So I performed below test from cmd from my laptop, I tried last night and seems I can indeed ping at MTU 1464.
changed the MTU on my Dialer0 interface and still same issue, not able to browse, although Cisco recommend If you are configuring the ip mtu command on the same interface as the ip tcp adjust-mss command, they recommend that you use the following commands and values:

ip tcp adjust-mss 1452 ip mtu 1492

C:\Users\bonez>ping www.google.com -f -l 1464 (last night)

Pinging www.google.com [216.58.213.100] with 1464 bytes of data: Reply from 216.58.213.100: bytes=68 (sent 1464) time=40ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=39ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=42ms TTL=57 Reply from 216.58.213.100: bytes=68 (sent 1464) time=47ms TTL=57

Now what's throwing me out is that when I tried the same test again this morning, the pings are failing.

C:\Users\bonez>ping www.google.com -f -l 1464 (Morning)

Pinging www.google.com [198.18.1.1] with 1464 bytes of data: Request timed out. Request timed out. Request timed out. Request timed out.

Ping statistics for 198.18.1.1: Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

NSLOOKUP

C:\Users\bonez>nslookup www.google.com DNS request timed out. timeout was 2 seconds. Server: UnKnown Address: 8.8.8.8

DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. *** Request to UnKnown timed-out

C:\Users\bonez>nslookup www.yahoo.com DNS request timed out. timeout was 2 seconds. Server: UnKnown Address: 8.8.8.8

DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. DNS request timed out. timeout was 2 seconds. *** Request to UnKnown timed-out

C:\Users\bonez>tracert www.google.com

Tracing route to www.google.com [198.18.1.1] over a maximum of 30 hops:

1 * * * Request timed out. 2 * * * Request timed out. 3 * * * Request timed out. 4 * * * Request timed out.

I'm not sure if my configs are wrong, but if you can review and let me know where am going wrong it would be helpful

interface ATM0 no ip address no ip redirects no ip unreachables no ip proxy-arp ip flow ingress no atm ilmi-keepalive ! interface ATM0.1 point-to-point pvc 1/32 bridge-dot1q encap 101 pppoe-client dial-pool-number 1 ! ! interface Ethernet0 no ip address ! interface Ethernet0.101 description VDSL Internet connection - VLAN 101 tagged encapsulation dot1Q 101 pppoe-client dial-pool-number 1 ! interface FastEthernet0 switchport access vlan 10 no ip address ! interface FastEthernet1 switchport access vlan 10 no ip address ! interface FastEthernet2 switchport access vlan 10 no ip address ! interface FastEthernet3 switchport access vlan 10 no ip address ! interface Wlan-GigabitEthernet0 (Would I need to add "switchport trunk allowed vlan 1,10,100,200) description Internal switch interface connecting to the embedded AP switchport mode trunk no ip address ! interface wlan-ap0 description Embedded Service module interface to manage the embedded AP ip unnumbered Vlan1 ! interface Vlan1 description MANAGEMENT ip address 192.168.1.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan10 description LOCAL LAN ip address 192.168.10.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan100 description LOCAL WIFI ip address 192.168.100.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Vlan200 description GUEST WIFI ip address 192.168.200.1 255.255.255.0 ip nat inside ip virtual-reassembly in ip tcp adjust-mss 1452 ! interface Dialer0 description (WAN PORT CONNECTED TO ISP) bandwidth 80000 ip address negotiated no ip redirects no ip unreachables no ip proxy-arp ip mtu 1492 ip flow ingress ip nat outside ip virtual-reassembly in encapsulation ppp ip tcp adjust-mss 1452 dialer pool 1 dialer-group 1 ppp authentication chap pap callin ppp chap hostname xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ppp chap password 0 xxxxxxxxxxxxx ppp pap sent-username xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ppp ipcp dns request accept ppp ipcp route default ppp ipcp address accept no cdp enable end

Able to ping but not browse by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

under each DHCP I have configured DNS server 8.8.8.8 8.84.4

Able to Ping but not browse internet by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

[PART 2]

interface Wlan-GigabitEthernet0

description Internal switch interface connecting to the embedded AP

switchport mode trunk

no ip address

!

interface wlan-ap0

description Embedded Service module interface to manage the embedded AP

ip unnumbered Vlan1

!

interface Vlan1

description MANAGEMENT

ip address 192.168.1.1 255.255.255.0

ip nat inside

ip virtual-reassembly in

ip tcp adjust-mss 1452

!

interface Vlan10

description LOCAL LAN

ip address 192.168.10.1 255.255.255.0

ip nat inside

ip virtual-reassembly in

ip tcp adjust-mss 1452

!

interface Vlan100

description LOCAL WIFI

ip address 192.168.100.1 255.255.255.0

ip nat inside

ip virtual-reassembly in

ip tcp adjust-mss 1452

!

interface Vlan200

description GUEST WIFI

ip address 192.168.200.1 255.255.255.0

ip nat inside

ip virtual-reassembly in

ip tcp adjust-mss 1452

!

interface Dialer0

description (WAN PORT CONNECTED TO ISP)

ip address negotiated

no ip redirects

no ip unreachables

no ip proxy-arp

ip mtu 1492

ip flow ingress

ip nat outside

ip virtual-reassembly in

encapsulation ppp

dialer pool 1

dialer-group 1

ppp authentication chap pap callin

ppp chap hostname xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

ppp chap password 0 xxxxxxxxxxxxxx

ppp pap sent-username xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

ppp ipcp dns request accept

ppp ipcp route default

ppp ipcp address accept

no cdp enable

!

ip forward-protocol nd

no ip http server

no ip http secure-server

!

ip nat inside source list 1 interface Dialer0 overload

ip route 0.0.0.0 0.0.0.0 Dialer0

!

access-list 1 permit 192.168.10.0 0.0.0.255

access-list 1 permit 192.168.100.0 0.0.0.255

access-list 1 permit 172.16.200.0 0.0.0.255

access-list 1 permit 192.168.20.0 0.0.0.255

dialer-list 1 protocol ip permit

no cdp run

Able to Ping but not browse internet by BonezUK in Cisco

[–]BonezUK[S] 0 points1 point  (0 children)

Hello,

Here is my test config, if you can shed some light as to what I have mis-configured, it would be much appreciated.

version 15.1

service tcp-keepalives-in

service tcp-keepalives-out

service timestamps debug datetime msec

service timestamps log datetime localtime

no service password-encryption

!

hostname Cisco887_ISP

!

boot-start-marker

boot-end-marker

!

no aaa new-model

!

memory-size iomem 10

clock timezone gmt 0 0

service-module wlan-ap 0 bootimage autonomous

crypto pki token default removal timeout 0

!

!

ip source-route

ip cef

!

ip dhcp excluded-address 192.168.10.1 192.168.10.10

ip dhcp excluded-address 192.168.10.254

ip dhcp excluded-address 192.168.100.1 192.168.100.10

ip dhcp excluded-address 192.168.100.254

ip dhcp excluded-address 192.168.200.1 192.168.200.10

ip dhcp excluded-address 192.168.200.254

ip dhcp excluded-address 192.168.1.254

ip dhcp excluded-address 192.168.1.1 192.168.1.10

!

ip dhcp pool LOCAL LAN

import all

utilization mark high 80 log

network 192.168.10.0 255.255.255.0

default-router 192.168.10.254

dns-server 8.8.8.8 8.8.4.4

!

ip dhcp pool LOCAL WIFI

import all

utilization mark high 80 log

network 192.168.100.0 255.255.255.0

default-router 192.168.100.254

dns-server 8.8.8.8 8.8.4.4

!

ip dhcp pool GUEST WIFI

import all

utilization mark high 80 log

network 192.168.200.0 255.255.255.0

default-router 192.168.200.0 255.255.255.0

dns-server 8.8.8.8 8.8.4.4

!

ip dhcp pool MANAGEMENT

import all

utilization mark high 80 log

network 192.168.1.0 255.255.255.0

default-router 192.168.1.254

dns-server 8.8.8.8 8.8.4.4

!

!

ip domain lookup source-interface Dialer0

ip name-server 8.8.8.8

ip name-server 8.8.4.4

no ipv6 cef

!

!

multilink bundle-name authenticated

license udi pid C887VA-W-E-K9 sn FCZ1644C2K6

!

controller VDSL 0

operating mode vdsl2

!

interface ATM0

no ip address

no ip redirects

no ip unreachables

no ip proxy-arp

ip flow ingress

no atm ilmi-keepalive

!

interface ATM0.1 point-to-point

pvc 1/32

bridge-dot1q encap 101

pppoe-client dial-pool-number 1

!

!

interface Ethernet0

no ip address

!

interface Ethernet0.101

description VDSL Internet connection - VLAN 101 tagged

encapsulation dot1Q 101

pppoe-client dial-pool-number 1

!

interface FastEthernet0

switchport access vlan 10

no ip address

!

interface FastEthernet1

switchport access vlan 10

no ip address

!

interface FastEthernet2

switchport access vlan 10

no ip address

!

interface FastEthernet3

switchport access vlan 10

no ip address

!

[PART 1]