Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


GinjaNinjaNZ

2 posts

Wannabe Geek


#290418 10-Nov-2021 14:10
Send private message

Hi all,

 

My EdgeRouter X is playing up so trying to set up a MikroTik hEX X to replace it.

I have it almost set up but not quite. I can create a PPPoE connection to 2degrees, and can even resolve DNS, but can't ping or load websites.

 

Here's some screenshots of router config:

 

https://imgur.com/a/rHpWdKd

 


1) VLAN interface

 

2) PPPoE connection

 

3) Pingplotter screenshot showing DNS resolution

 

4) System tray showing Windows believing it has a connection

If there's further information that would be helpful I'm perfectly happy to supply it


Filter this topic showing only the reply marked as answer Create new topic
RunningMan
8954 posts

Uber Geek


  #2810472 10-Nov-2021 14:16
Send private message

Default firewall config probably has ether1 as the WAN interface. That may need to be updated to be your PPPoE interface instead.




mentalinc
3229 posts

Uber Geek

Trusted

  #2810478 10-Nov-2021 14:29
Send private message

@michealmurphy 





CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


GinjaNinjaNZ

2 posts

Wannabe Geek


  #2810482 10-Nov-2021 14:38
Send private message

haha, yep, that was it, figured it'd probably be something simple tucked away somewhere I hadn't thought of looking, thank you so much!

 




toejam316
1466 posts

Uber Geek

Trusted
Lifetime subscriber

  #2819018 25-Nov-2021 10:02
Send private message

Just FYI, you'll have a better time using Winbox over Webfig.




Anything I say is the ramblings of an ill informed, opinionated so-and-so, and not representative of any of my past, present or future employers, and is also probably best disregarded.


RunningMan
8954 posts

Uber Geek


  #2819047 25-Nov-2021 11:09
Send private message

Only if you want to use Windows that is.


toejam316
1466 posts

Uber Geek

Trusted
Lifetime subscriber

  #2819165 25-Nov-2021 13:20
Send private message

RunningMan:

 

Only if you want to use Windows that is.

 

 

I've seen Winbox working A-OK under Mac OS X and on Linux using WINE without issue.





Anything I say is the ramblings of an ill informed, opinionated so-and-so, and not representative of any of my past, present or future employers, and is also probably best disregarded.


BlackHand
131 posts

Master Geek


  #2819170 25-Nov-2021 13:30
Send private message

I've been using this without any issue : https://github.com/nrlquaker/winbox-mac

 

 


 
 
 

Free kids accounts - trade shares and funds (NZ, US) with Sharesies (affiliate link).
MadEngineer
4274 posts

Uber Geek

Trusted

  #2819190 25-Nov-2021 14:21
Send private message

Can confirm it works cross platform under wine. Mikrotik have done work to ensure this.




You're not on Atlantis anymore, Duncan Idaho.

cyril7
9058 posts

Uber Geek

ID Verified
Trusted
Subscriber

  #2819194 25-Nov-2021 14:27
Send private message

pppffftt the cli on MT is fine, works on anything

 

Cyril


BlackHand
131 posts

Master Geek


  #2820639 28-Nov-2021 14:36
Send private message

Anyone able to share the steps/settings to get IPV6 working, my dhcpv6-client is stuck on searching....

 

 0    interface=2degrees VLAN status=searching... duid="0x000....." 
      dhcp-server-v6=:: request=prefix add-default-route=yes 
      default-route-distance=1 use-peer-dns=no dhcp-options="" 
      pool-name="2degrees-ipv6" pool-prefix-length=56 prefix-hint=::/0 
      dhcp-options="" 

 

 

 

 

 

 


aseni
52 posts

Master Geek


  #2820642 28-Nov-2021 15:21
Send private message

 

/ipv6 dhcp-client
add add-default-route=yes interface=pppoe pool-name=pppoe request=prefix \
    use-peer-dns=no
/ipv6 firewall filter
add action=accept chain=input comment="DHCPv6 client" dst-port=546 \
    in-interface=pppoe protocol=udp src-port=547

 


MadEngineer
4274 posts

Uber Geek

Trusted

  #2820646 28-Nov-2021 15:49
Send private message

^ the default IPv6 firewall rules will already have that rule, albeit not restricted to the WAN:

 


/ipv6 firewall address-list
add address=::/128 comment="defconf: unspecified address" list=bad_ipv6
add address=::1/128 comment="defconf: lo" list=bad_ipv6
add address=fec0::/10 comment="defconf: site-local" list=bad_ipv6
add address=::ffff:0.0.0.0/96 comment="defconf: ipv4-mapped" list=bad_ipv6
add address=::/96 comment="defconf: ipv4 compat" list=bad_ipv6
add address=100::/64 comment="defconf: discard only " list=bad_ipv6
add address=2001:db8::/32 comment="defconf: documentation" list=bad_ipv6
add address=2001:10::/28 comment="defconf: ORCHID" list=bad_ipv6
add address=3ffe::/16 comment="defconf: 6bone" list=bad_ipv6
add address=::224.0.0.0/100 comment="defconf: other" list=bad_ipv6
add address=::127.0.0.0/104 comment="defconf: other" list=bad_ipv6
add address=::/104 comment="defconf: other" list=bad_ipv6
add address=::255.0.0.0/104 comment="defconf: other" list=bad_ipv6
/ipv6 firewall filter
add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid
add action=accept chain=input comment="defconf: accept ICMPv6" protocol=icmpv6
add action=accept chain=input comment="defconf: accept UDP traceroute" port=33434-33534 protocol=udp
add action=accept chain=input comment="defconf: accept DHCPv6-Client prefix delegation." dst-port=546 protocol=udp \
    src-address=fe80::/16

add action=accept chain=forward comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: rfc4890 drop hop-limit=1" hop-limit=equal:1 protocol=icmpv6
add action=accept chain=forward comment="defconf: accept ICMPv6" protocol=icmpv6
add action=accept chain=forward comment="defconf: accept HIP" protocol=139
add action=accept chain=forward comment="defconf: accept IKE" dst-port=500,4500 protocol=udp
add action=accept chain=forward comment="defconf: accept ipsec AH" protocol=ipsec-ah
add action=accept chain=forward comment="defconf: accept ipsec ESP" protocol=ipsec-esp
add action=accept chain=forward comment="defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec
/ipv6 firewall raw
add action=drop chain=prerouting comment=bad_ipv6 src-address-list=bad_ipv6

 

(note that I've moved the bad_ipv6 address filter to raw)

 

Also I request both address and prefix on the dhcp client





You're not on Atlantis anymore, Duncan Idaho.

aseni
52 posts

Master Geek


  #2820648 28-Nov-2021 16:20
Send private message

MadEngineer:

 

Also I request both address and prefix on the dhcp client

 

 

That's interesting... I always got the DHCP request ignored when I tried requesting both address and prefix.


BlackHand
131 posts

Master Geek


  #2820762 28-Nov-2021 21:29
Send private message

Thanks I've tried the suggestions above, same issue still (do I need to change anything in pool, nd, etc..) ?
I've tried both 64 and 56 prefix length, i'm pretty sure it needs to be 56 for 2degrees?

 

 

 

 

 

 

> /ipv6/ export

 


 

/ipv6 dhcp-client

 

add add-default-route=yes interface=2degrees-pppoe pool-name=2degrees-ipv6 pool-prefix-length=56 request=prefix use-peer-dns=no

 

/ipv6 firewall address-list

 

add address=::/128 comment="defconf: unspecified address" list=bad_ipv6

 

add address=::1/128 comment="defconf: lo" list=bad_ipv6

 

add address=fec0::/10 comment="defconf: site-local" list=bad_ipv6

 

add address=::ffff:0.0.0.0/96 comment="defconf: ipv4-mapped" list=bad_ipv6

 

add address=::/96 comment="defconf: ipv4 compat" list=bad_ipv6

 

add address=100::/64 comment="defconf: discard only " list=bad_ipv6

 

add address=2001:db8::/32 comment="defconf: documentation" list=bad_ipv6

 

add address=2001:10::/28 comment="defconf: ORCHID" list=bad_ipv6

 

add address=3ffe::/16 comment="defconf: 6bone" list=bad_ipv6

 

add address=::224.0.0.0/100 comment="defconf: other" list=bad_ipv6

 

add address=::127.0.0.0/104 comment="defconf: other" list=bad_ipv6

 

add address=::/104 comment="defconf: other" list=bad_ipv6

 

add address=::255.0.0.0/104 comment="defconf: other" list=bad_ipv6

 

/ipv6 firewall filter

 

add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=established,related,untracked

 

add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid

 

add action=accept chain=input comment="defconf: accept ICMPv6" protocol=icmpv6

 

add action=accept chain=input comment="defconf: accept UDP traceroute" port=33434-33534 protocol=udp

 

add action=accept chain=input comment="defconf: accept DHCPv6-Client prefix delegation." dst-port=546 protocol=udp src-address=fe80::/16

 

add action=accept chain=forward comment="defconf: accept established,related,untracked" connection-state=established,related,untracked

 

add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid

 

add action=drop chain=forward comment="defconf: rfc4890 drop hop-limit=1" hop-limit=equal:1 protocol=icmpv6

 

add action=accept chain=forward comment="defconf: accept ICMPv6" protocol=icmpv6

 

add action=accept chain=forward comment="defconf: accept HIP" protocol=139

 

add action=accept chain=forward comment="defconf: accept IKE" dst-port=500,4500 protocol=udp

 

add action=accept chain=forward comment="defconf: accept ipsec AH" protocol=ipsec-ah

 

add action=accept chain=forward comment="defconf: accept ipsec ESP" protocol=ipsec-esp

 

add action=accept chain=forward comment="defconf: accept all that matches ipsec policy" ipsec-policy=in,ipsec

 

/ipv6 firewall raw

 

add action=drop chain=prerouting comment=bad_ipv6 src-address-list=bad_ipv6

 

/ipv6 settings

 

set max-neighbor-entries=8192

 

 

 

Filter this topic showing only the reply marked as answer Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.