Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

https://www.aliexpress.com/item/1005005937928989.html


Create and start Ubuntu Live CD CD (USB)

https://releases.ubuntu.com/jammy/

https://rufus.ie/en/

if you got "Device eliminated because it was detected as a Hard Drive (score 13 > 0)" you need to Press "Show Advanced drive properties" and check "List USB Hard Drives


After boot Live USB

Code Block
# basic router setup to preserv internet connecting while testing router performance
vi /etc/sysctl.conf
sysctl -p /etc/sysctl.conf
iptables -t nat -A POSTROUTING -j MASQUERADE
apt install isc-dhcp-server
vi /etc/ssh/sshd_config
vi /etc/dhcp/dhcpd.conf
systemctl restart isc-dhcpd-server
systemctl restart dhcpd

...