F5F Stay Refreshed Software Operating Systems SMB over the internet refers to a protocol for accessing shared resources on a network.

SMB over the internet refers to a protocol for accessing shared resources on a network.

SMB over the internet refers to a protocol for accessing shared resources on a network.

Pages (2): 1 2 Next
S
SYNAPZ_YT
Junior Member
22
12-13-2023, 04:05 PM
#1
Hello. For connecting your home server over the internet via SMB shares, you should forward the appropriate ports on your router. Typically, port 445 is used for SMB connections, so you’ll need to route that traffic through your ISP’s gateway. You can access the server by entering its name or IP address in a web browser, depending on how it’s configured. Simply typing the name won’t work if the server isn’t bound to a specific IP; use the full address or port details.
S
SYNAPZ_YT
12-13-2023, 04:05 PM #1

Hello. For connecting your home server over the internet via SMB shares, you should forward the appropriate ports on your router. Typically, port 445 is used for SMB connections, so you’ll need to route that traffic through your ISP’s gateway. You can access the server by entering its name or IP address in a web browser, depending on how it’s configured. Simply typing the name won’t work if the server isn’t bound to a specific IP; use the full address or port details.

T
TheJKLM
Member
110
12-13-2023, 04:05 PM
#2
SSH provides additional security features.
T
TheJKLM
12-13-2023, 04:05 PM #2

SSH provides additional security features.

M
minifig_cd
Member
168
12-13-2023, 04:05 PM
#3
It's port 445. You're not using SSH, so you'll need to use Telnet with a Windows Server. To connect remotely, you'd typically set up a Telnet session on the server and then access it from your local machine.
M
minifig_cd
12-13-2023, 04:05 PM #3

It's port 445. You're not using SSH, so you'll need to use Telnet with a Windows Server. To connect remotely, you'd typically set up a Telnet session on the server and then access it from your local machine.

J
jmodkiller
Member
212
12-13-2023, 04:05 PM
#4
SSH enables socket tunneling, functioning similarly to a proxy.
J
jmodkiller
12-13-2023, 04:05 PM #4

SSH enables socket tunneling, functioning similarly to a proxy.

A
Artrekz
Member
70
12-13-2023, 04:05 PM
#5
1. On a Linux system, use sshfs to attach directories from your local machine if you're using any Linux distribution.
2. For Windows users, refer to this guide: http://igikorn.com/sshfs-windows-8/
3. Avoid using SMB shares over the internet—they're highly insecure. See: http://thehackernews.com/2015/04/smb-win...ility.html
4. Ensure your server's root account lacks SSH access and redirect port 22 through your router.
A
Artrekz
12-13-2023, 04:05 PM #5

1. On a Linux system, use sshfs to attach directories from your local machine if you're using any Linux distribution.
2. For Windows users, refer to this guide: http://igikorn.com/sshfs-windows-8/
3. Avoid using SMB shares over the internet—they're highly insecure. See: http://thehackernews.com/2015/04/smb-win...ility.html
4. Ensure your server's root account lacks SSH access and redirect port 22 through your router.

G
GaZeVII
Member
141
12-13-2023, 04:05 PM
#6
Never transmit SMB over the internet! It's extremely risky. Opt for a VPN service such as OpenVPN or Softther. This ensures safe access to your local network. Another point is, you can enhance your network traffic compression. This is important since Samba is designed for LAN environments and requires less than 1ms response time due to numerous RPC requests. A standard DSL connection typically has a 30-40 ms response time. That means accessing data will be slow. Unless you really need to connect through a mapped network drive, I suggest avoiding Samba. Instead, use alternatives like SCP (SSH), FTP with tools such as WinSCP (Windows), Cyberduck (Mac), or Dolphin/Integrated (Linux). These protocols are much better optimized and will make using them easier. - - sorry for my poor English
G
GaZeVII
12-13-2023, 04:05 PM #6

Never transmit SMB over the internet! It's extremely risky. Opt for a VPN service such as OpenVPN or Softther. This ensures safe access to your local network. Another point is, you can enhance your network traffic compression. This is important since Samba is designed for LAN environments and requires less than 1ms response time due to numerous RPC requests. A standard DSL connection typically has a 30-40 ms response time. That means accessing data will be slow. Unless you really need to connect through a mapped network drive, I suggest avoiding Samba. Instead, use alternatives like SCP (SSH), FTP with tools such as WinSCP (Windows), Cyberduck (Mac), or Dolphin/Integrated (Linux). These protocols are much better optimized and will make using them easier. - - sorry for my poor English

C
csige791
Posting Freak
818
12-13-2023, 04:05 PM
#7
Initially, I don’t have DSL—optical fibre is my setup! I receive solid 100 Mbps both ways and ping is low. I’ve been exploring VPN options anyway since I’m facing issues forwarding ports. Currently, I’m using Hamachi so my friends can enjoy Minecraft, but I’m considering a switch. People say OpenVPN offers the strongest security, so I’ll likely go with that. I’m unsure about compatibility with Windows Server, which might push me toward SSTP instead.
C
csige791
12-13-2023, 04:05 PM #7

Initially, I don’t have DSL—optical fibre is my setup! I receive solid 100 Mbps both ways and ping is low. I’ve been exploring VPN options anyway since I’m facing issues forwarding ports. Currently, I’m using Hamachi so my friends can enjoy Minecraft, but I’m considering a switch. People say OpenVPN offers the strongest security, so I’ll likely go with that. I’m unsure about compatibility with Windows Server, which might push me toward SSTP instead.

T
TheAntonia
Member
68
12-13-2023, 04:05 PM
#8
The connection speed remains around 10 ms regardless of whether you have optical or DSL internet. It’s still a limited link, so it’s not ideal for network protocols. "OpenVPN is the most secure VPN protocol" isn’t accurate. OpenVPN relies on OpenSSL encryption, similar to Microsoft SSTP. Be aware of past issues like the HeartBleed bug with SSL. You can definitely use OpenVPN since clients are available for almost any platform—Windows, Mac, Linux, iOS, Android. Another strong option is IPSec, which is close to the standard VPN setup. Many companies, including Microsoft, use L2TP over IPSec for secure tunnels. SoftEther VPN is a solid choice. With this service, you can run native VPN clients on Windows, iOS, Android, and Mac without needing any additional software. The interface is very user-friendly. I’ve used OpenVPN for years, but recently switched to SoftEther—it performs exceptionally well! I highly suggest trying SoftEther because it offers more flexibility, speed, and ease of use compared to OpenVPN.
T
TheAntonia
12-13-2023, 04:05 PM #8

The connection speed remains around 10 ms regardless of whether you have optical or DSL internet. It’s still a limited link, so it’s not ideal for network protocols. "OpenVPN is the most secure VPN protocol" isn’t accurate. OpenVPN relies on OpenSSL encryption, similar to Microsoft SSTP. Be aware of past issues like the HeartBleed bug with SSL. You can definitely use OpenVPN since clients are available for almost any platform—Windows, Mac, Linux, iOS, Android. Another strong option is IPSec, which is close to the standard VPN setup. Many companies, including Microsoft, use L2TP over IPSec for secure tunnels. SoftEther VPN is a solid choice. With this service, you can run native VPN clients on Windows, iOS, Android, and Mac without needing any additional software. The interface is very user-friendly. I’ve used OpenVPN for years, but recently switched to SoftEther—it performs exceptionally well! I highly suggest trying SoftEther because it offers more flexibility, speed, and ease of use compared to OpenVPN.

K
KablooieKablam
Posting Freak
908
12-13-2023, 04:05 PM
#9
Consider trying Softether instead. For OpenVPN, easy-rsa appears to have issues on Windows.
K
KablooieKablam
12-13-2023, 04:05 PM #9

Consider trying Softether instead. For OpenVPN, easy-rsa appears to have issues on Windows.

F
Frogimouse
Member
217
12-13-2023, 04:05 PM
#10
OpenVPN might not be the best choice. I really like SoftEther more. It offers better security, flexibility, speed, and ease of management. Most importantly, you should feel confident using your VPN service. There are many options available, so pick the one that suits you best.
F
Frogimouse
12-13-2023, 04:05 PM #10

OpenVPN might not be the best choice. I really like SoftEther more. It offers better security, flexibility, speed, and ease of management. Most importantly, you should feel confident using your VPN service. There are many options available, so pick the one that suits you best.

Pages (2): 1 2 Next