diff options
-rw-r--r-- | etc/services | 3 | ||||
-rw-r--r-- | home/xyz/.ssh/config | 3 | ||||
-rw-r--r-- | root/.ssh/config | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/etc/services b/etc/services index 60212fec..e7295395 100644 --- a/etc/services +++ b/etc/services @@ -11515,6 +11515,9 @@ monerod-p2p 18080/tcp searx 49152/tcp qrcp 49153/tcp wireguard 49432/udp +# My ISP verizon block incomming to gateway port 22. So I need to use another port to ssh into my home server. +# https://www.reddit.com/r/verizon/comments/to1q43/verizon_5g_home_internet_blocking_ssh_service_port/ +ssh-isp 49812/tcp iperf3 53497/tcp # qemu port forward guest windows virtual machine ssh qemu-win-ssh 53683/tcp diff --git a/home/xyz/.ssh/config b/home/xyz/.ssh/config index c18ee730..02d02145 100644 --- a/home/xyz/.ssh/config +++ b/home/xyz/.ssh/config @@ -32,3 +32,6 @@ Host qw HostName localhost Port qemu-win-ssh User xyz + +Host flylightning.xyz + Port ssh-isp diff --git a/root/.ssh/config b/root/.ssh/config new file mode 100644 index 00000000..a5f1fca3 --- /dev/null +++ b/root/.ssh/config @@ -0,0 +1,2 @@ +Host flylightning.xyz + Port ssh-isp |