paul464646
Occasional Visitor
Yep all back to modem download speed now................cheers
tcpdump -s 0 -ni vlan1 -p port 123
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on vlan1, link-type EN10MB (Ethernet), capture size 262144 bytes
00:00:00.529585 IP 192.168.1.64.123 > 13.65.245.138.123: NTPv3, Client, length 48
12:40:47.102345 IP 13.65.245.138.123 > 192.168.1.64.123: NTPv3, Server, length 48
tcpdump -s 0 -ni br0 -p port 123
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on br0, link-type EN10MB (Ethernet), capture size 262144 bytes
12:42:10.166618 IP 192.168.1.64.123 > 13.65.245.138.123: NTPv3, Client, length 48
12:42:10.167132 IP 13.65.245.138.123 > 192.168.1.64.123: NTPv3, Server, length 48
it is quite possible you are still missing your IPV6 Gateway. Check the syslogs tab on your router, there is a tab inside this page called IPV6. If you are missing your IPV6 Wan Gateway then you may need to make a script called wan- start.Using a RT-AX88U. IPv6 showing address using Native and ISP supports ipv6 also, but it fails the test at https://ipv6-test.com/
#!/bin/sh
echo "1" > /proc/sys/net/ipv6/conf/all/accept_ra
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
echo "1" > /proc/sys/net/ipv6/conf/eth0/accept_ra
echo "0" > /proc/sys/net/ipv6/conf/eth0/forwarding
echo "1" > /proc/sys/net/ipv6/conf/all/accept_ra
echo "1" > /proc/sys/net/ipv6/conf/all/forwarding
echo "1" > /proc/sys/net/ipv6/conf/eth0/accept_ra
echo "0" > /proc/sys/net/ipv6/conf/eth0/forwarding
BTW. this is all because asus recently broke some of the IPV6 support to advertise for the Eth0 connection.Using a RT-AX88U. IPv6 showing address using Native and ISP supports ipv6 also, but it fails the test at https://ipv6-test.com/
it is quite possible you are still missing your IPV6 Gateway. Check the syslogs tab on your router, there is a tab inside this page called IPV6. If you are missing your IPV6 Wan Gateway then you may need to make a script called wan- start.
you would do so by turning on custom scripts and turning on SSH on the Administration page. you would then connect to your router using an application called putty, which allows you to log into SSH using your routers IP and Admin name and password.
you would then make a script using the text copy paste and enter.
nano /jffs/scripts/wan-start
you then procede to copy and paste this text into the client
Code:#!/bin/sh echo "1" > /proc/sys/net/ipv6/conf/all/accept_ra echo "1" > /proc/sys/net/ipv6/conf/all/forwarding echo "1" > /proc/sys/net/ipv6/conf/eth0/accept_ra echo "0" > /proc/sys/net/ipv6/conf/eth0/forwarding
then you type ctrl-x then y and enter
then copy and paste
chmod a+rx /jffs/scripts/wan-start
into the client and press enter
then type in reboot
press enter
This will allow your router to then advertise the Wan IPV6 Gateway and will allow you to achieve full IPV6 connection.
note- if you already have an wan-start script then just copy and paste
to the bottom and rebootCode:echo "1" > /proc/sys/net/ipv6/conf/all/accept_ra echo "1" > /proc/sys/net/ipv6/conf/all/forwarding echo "1" > /proc/sys/net/ipv6/conf/eth0/accept_ra echo "0" > /proc/sys/net/ipv6/conf/eth0/forwarding
First, please understand that Linux manages RAM very differently than other OS types.I have two RT-AC68U's running 384.11_2 with almost identical configuration. IPV4 is a static IP, IPV6 is enabled and working file, VPN server is configured (non std port) for me to manage the networks remotely. Port forwarding is enabled on one router for security cam server access. SMB is disabled. Both routers were factory reset after installing 384.11 and manually configured.
My concern is that over the past 8 days the RAM usage on each router has been going up. Started out at 47% and is now up to 64%. I can see nothing out of the ordinary in the logs and the routers are working well on the cable modem. Am considering adding a USB drive with a swap file but do not know if that will prevent issues if the RAM usage continues to climb. Yes, scheduling a periodic reboot might help.
Suggestions or things to try?
Nothing. Unused RAM is wasted RAM. Sure, use a USB with swap, it's not going to hurt anything. In Linux and most modern operating systems "free" memory is a misnomer. It includes memory that the kernel has marked as available to use, but it's keeping track of that memory "just in case". It's difficult to determine, and I think in some areas open to interpretation, how much memory is really immediately available for use at any one time. Don't get wrapped up in the amount of "free" memory. My AC86U regularly runs at about 96% used and 100-150M swapped out (512M swap file). Performance is fine.I have two RT-AC68U's running 384.11_2 with almost identical configuration. IPV4 is a static IP, IPV6 is enabled and working file, VPN server is configured (non std port) for me to manage the networks remotely. Port forwarding is enabled on one router for security cam server access. SMB is disabled. Both routers were factory reset after installing 384.11 and manually configured.
My concern is that over the past 8 days the RAM usage on each router has been going up. Started out at 47% and is now up to 64%. I can see nothing out of the ordinary in the logs and the routers are working well on the cable modem. Am considering adding a USB drive with a swap file but do not know if that will prevent issues if the RAM usage continues to climb. Yes, scheduling a periodic reboot might help.
Suggestions or things to try?
@RT-AC86U-4608:/tmp/home/root# free
total used free shared buffers cached
Mem: 440420 411444 28976 316 22600 38492
-/+ buffers/cache: 350352 90068
Swap: 524284 17292 506992
Am very familiar with Linux as I have been documenting an open source security camera system for years. What is concerning is the steady rise when my RT-AC66U_B1 has been a steady 47-49% for the same period. Currently not using USB apps or DoT/DNSSEC.First, please understand that Linux manages RAM very differently than other OS types.
Best recommendation I have is use htop to see what is consuming memory.Am very familiar with Linux as I have been documenting an open source security camera system for years. What is concerning is the steady rise when my RT-AC66U_B1 has been a steady 47-49% for the same period. Currently not using USB apps or DoT/DNSSEC.
Sent from my SM-T380 using Tapatalk
Am very familiar with Linux as I have been documenting an open source security camera system for years. What is concerning is the steady rise when my RT-AC66U_B1 has been a steady 47-49% for the same period. Currently not using USB apps or DoT/DNSSEC.
Sent from my SM-T380 using Tapatalk
Im on
384.10_2 can I update to latest stable without any issues or do I need to factory reset after? Im using skynet also
As mentioned, hard to say.Im on
384.10_2 can I update to latest stable without any issues or do I need to factory reset after? Im using skynet also
Im on
384.10_2 can I update to latest stable without any issues or do I need to factory reset after? Im using skynet also
Thank you or I will do a factory reset after an upgrade.No one can predict if you'll have issues or not.
Update and monitor your network and router to see if it behaves as expected.
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!