浏览代码

vpn tls port on mesh

Bob Mottram 7 年前
父节点
当前提交
62bea42aca
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2
    3
      src/freedombone-mesh-connect

+ 2
- 3
src/freedombone-mesh-connect 查看文件

@@ -41,7 +41,6 @@ VPN_LOCATION="Freedomville"
41 41
 VPN_ORGANISATION="Freedombone"
42 42
 VPN_UNIT="Freedombone Unit"
43 43
 STUNNEL_PORT=3439
44
-VPN_TLS_PORT=553
45 44
 VPN_MESH_TLS_PORT=653
46 45
 
47 46
 function vpn_generate_keys {
@@ -154,7 +153,7 @@ function mesh_setup_vpn {
154 153
 
155 154
     if [ -f vpn.tar.gz ]; then
156 155
         dialog --title $"Generate VPN client keys" \
157
-               --msgbox $"\nNew VPN client keys have been generated in the /home/fbone directory.\n\nYou can find it by selecting \"Places\" then \"Home Directory\" on the top menu bar. Transmit the vpn.tar.gz file to whoever is running the other mesh network so that they can connect to yours.\n\nThey should uncompress vpn.tar.gz to their /home/fbone directory, then connect using your IP address or domain name." 15 70
156
+               --msgbox $"\nNew VPN client keys have been generated in the /home/fbone directory.\n\nYou can find it by selecting \"Places\" then \"Home Directory\" on the top menu bar. Transmit the vpn.tar.gz file to whoever is running the other mesh network so that they can connect to yours.\n\nThey should uncompress vpn.tar.gz to their /home/fbone directory, forward port $VPN_MESH_TLS_PORT then connect using your IP address or domain name." 15 70
158 157
     fi
159 158
 }
160 159
 
@@ -162,7 +161,7 @@ function connect_to_vpn {
162 161
     dialog --title $"VPN Connect to another mesh network" \
163 162
            --backtitle $"Freedombone Mesh" \
164 163
            --defaultno \
165
-           --yesno $"\nHave you received the vpn.tar.gz file from the other mesh administrator and uncompressed it into the /home/fbone directory?" 10 70
164
+           --yesno $"\nHave you received the vpn.tar.gz file from the other mesh administrator, uncompressed it into the /home/fbone directory and also forwarded port $VPN_MESH_TLS_PORT from your internet router to this system?" 10 70
166 165
     sel=$?
167 166
     case $sel in
168 167
         1) return;;