diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/services | 3 | ||||
-rw-r--r-- | etc/ssh/ssh_config.d/my_ssh_config.conf | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/etc/services b/etc/services index 95126ff7..61585f33 100644 --- a/etc/services +++ b/etc/services @@ -11510,6 +11510,9 @@ nusdp-disc 49001/udp inspider 49150/tcp # my services 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 # qbittorrent-nox web ui port for remote access browser gui qbt-nox 57151/tcp diff --git a/etc/ssh/ssh_config.d/my_ssh_config.conf b/etc/ssh/ssh_config.d/my_ssh_config.conf new file mode 100644 index 00000000..a5f1fca3 --- /dev/null +++ b/etc/ssh/ssh_config.d/my_ssh_config.conf @@ -0,0 +1,2 @@ +Host flylightning.xyz + Port ssh-isp |