Mount Azure Cloud VM File Share Folder With Tcp Port 445 Blocked By ISP
Diagram - TCP Port 445 Blocked
Home machine does not have access to tcp port 445 over Internet because of blocked by ISP.
Diagram - Using Other Port (4455)for Connection
Azure Cloud - 1. Create a New Resource Group
Azure Cloud - 2. Create VM
Azure Cloud - 3. Test and Verify Port 445 Blocked from Local Home Machine
Use online port forwarding tester website : https://www.
Test-NetConnection -ComputerName 20.121.195.14 -Port 445
Failed for port 445 testing although it has been opened on Azure cloud's firewall. That is because my home ISP blocked port 445.
PS C:/Users/test> Test-NetConnection -ComputerName 20.121.195.14 -Port 445Test-NetConnection -ComputerName 20.121.195.14 -Port 445 PS C:/Users/test> Test-NetConnection -ComputerName 20.121.195.14 -Port 445 WARNING: TCP connect to (20.121.195.14 : 445) failed
WARNING: Ping to 20.121.195.14 failed with status: TimedOut
ComputerName : 20.121.195.14
RemoteAddress : 20.121.195.14
RemotePort : 445
InterfaceAlias : Ethernet0
SourceAddress : 192.168.2.141
PingSucceeded : False
PingReplyDetails (RTT) : 0 ms
TcpTestSucceeded : False
Azure Cloud - 4. Create a New Public IP and Load Balancer
Add frontend IP address:
Add a new backend pool which is pointing to our Azure file share VM's ip address.
10.0.0.4 is our Cloud VM's ip address.
Home Test Machine - 1. Install the Loopback Adapter
- Start the Add Hardware Wizard by either going Start->Settings->Control Panel->Add Hardware or by starting a console window with elevated (Administrator) privileges. In the console window type
hdwwiz.exe
The Hardware Wizard will come up:
- Click Next to continue:
Select Install the hardware that I manually select from a list and click Next. - Now you'll see:
Select the entry Network adapters and click Next. - In the next screen
first select Microsoft from the list of Manufacturers and then select Microsoft KM-TEST Loopback Adapter from the list of Network Adapters. Finally, click Next once more. - Almost finished:
This is your last chance to abort, otherwise, click Next. - After a while you should see:
Click Finish to exit the Hardware Wizard.
Note: A reboot is sometimes required for the loopback adapter to come up properly.
Home Test Machine - 2. Configuring the Loopback Adapter
- Go to the Network Connections Center:
- Choose the loopback adapter (usually it is named something like "Local Area Connection #3") and right-click on it:
- Choose Properties, after which a new window will appear
Make sure that- the entry Client for Microsoft Networks is NOT enabled, i.e. does not have a checkmark in front of it.
- the entry File and Printer sharing for Microsoft Networks is NOT enabled, i.e. does not have a checkmark in front of it.
- the entry Internet Protocol (TCP/IP) is enabled, and it is only needed.
- The easiest action is to remove all items but Tcp/ipv4.
- Select the entry Internet Protocol (TCP/IP), then click on Properties.
- A new window will appear:
- Select Use the following IP address and fill in the 'IP address' and 'Subnet mask' as above.
It is not necessary to fill in the 'Default gateway' or a 'DNS server'. - Click on Advanced to make the following window appear:
Deselect Automatic metric and fill in the value of 9999 as the 'Interface metric' as shown above. - Click on the WINS tab:
and select Disable NetBIOS over TCP/IP. - Click on OK, OK and Close the window.
Home Test Machine - 3. Disabling the 'SMB 1.0' Windows feature
SMB 1.0
:
- Go to the Control Panel->Programs->Programs and Features and select Turn Windows features on or off
- A list of features pops up:
Scroll down and deselect the feature SMB 1.0/CIFS File Sharing support - Now close this control panel item.
Home Test Machine - 4. Tweaking the 'LanmanServer' service
lanmanserver
service (Server service) for all interfaces. If we can insert a portproxy
rule to grab port 445 for the loopback interface before the lanmanserver
service starts, we can circumvent this. Be aware that portproxy
rules are executed by the iphlpsvc
service. By adding a dependency to the lanmanserver
service we ensure that the iphlpsvc
service is always launched before the lanmanserver
service. This section explains how to do this:
- Start a console window with elevated (Administrator) privileges.
- Get the list of service dependencies by typing:
sc qc lanmanserver
You should see output similar to this:
C:/Users/test>sc qc lanmanserver
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: lanmanserver
TYPE : 20 WIN32_SHARE_PROCESS
START_TYPE : 2 AUTO_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : C:/WINDOWS/system32/svchost.exe -k netsvcs -p
LOAD_ORDER_GROUP :
TAG : 0
DISPLAY_NAME : Server
DEPENDENCIES : samss
: srv2
SERVICE_START_NAME : LocalSystem
C:/Users/test>Alternatively, you can use the
Powershell
commandGet-Service -DisplayName server -RequiredServices
PS C:/Users/test> Get-Service -DisplayName server -RequiredServices
Status Name DisplayName
------ ---- -----------
Running samss Security Accounts Manager
Running iphlpsvc IP Helper
Running srv2 Server SMB 2.xxx Driver
PS C:/Users/test>
- Note down the names of the services on which the
Server
service (also known aslanmanserver
) depends. In this case, these services aresamss
andsrv2
(the service names are case independent). - Change the list of services on which the
lanmanserver
services depends by adding theiphlpsvc
service to the list of required services found in the previous step:sc config lanmanserver depend= samss/srv2/iphlpsvc
NOTES:
- The space after the
"depend= "
is required! - Dependencies are separated using slashes ("/").
C:/Users/test>sc qc lanmanserver
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: lanmanserver
TYPE : 20 WIN32_SHARE_PROCESS
START_TYPE : 2 AUTO_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : C:/WINDOWS/system32/svchost.exe -k netsvcs -p
LOAD_ORDER_GROUP :
TAG : 0
DISPLAY_NAME : Server
DEPENDENCIES : samss
: srv2
: iphlpsvc
SERVICE_START_NAME : LocalSystem
C:/Users/test>
- Next we add a
portproxy
rule to reroute TCP port 445 to a port of our choosing. For this tutorial, I choose 4455:netsh interface portproxy add v4tov4 listenaddress=10.255.255.1 listenport=445
connectaddress=<Remote Azure Load Balancer's Public IP> connectport=4455
netsh interface portproxy add v4tov4 listenaddress=10.255.255.1 listenport=445 connectaddress=20.81.92.127 connectport=4455
NOTES:
- The
listenaddress
is the address of the Loopback adapter configured in the section earlier
After netsh command completed, you can verify this portproxy entry using following command:
C:/Users/test>netsh interface portproxy show all
Listen on ipv4: Connect to ipv4:
Address Port Address Port
--------------- ---------- --------------- ----------
10.255.255.1 445 20.81.92.127 4455
C:/Users/test>
portproxy
rule is persistent, so there should be no need to repeat this step after a reboot.Home Test Machine - 5. Check Service
- Reboot Windows.
- Verify that the
portproxy
was applied successfully by checking the open ports on the system. Type in a command consolenetstat -an | find ":445 "
You should see something like:
C:/Users/test>netstat -nat | find "445"
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING InHost
TCP 10.255.255.1:445 0.0.0.0:0 LISTENING InHost
TCP [::]:445 [::]:0 LISTENING InHost
C:/Users/test>
If you see only '0.0.0.0:445
' instead then the 'portproxy' rule was not applied correctly. Verify that the right 'portproxy' rule was used
-
netsh interface portproxy show v4tov4
and verify that the
IpHlpSvc
service is running at Windows startup usingsc query iphlpsvc
Another reason for the 'port grabbing' to fail could be the
LanmanWorkstation
service running at Windows startup. If so, try giving it the same treatment asLanmanServer
. However, on the Windows 10 installations I tested this service was running at system startup without causing any problems. - After Windows comes up and you have logged in, check the status of the 'lanmanserver' service. Open a command console (no privilege elevation is required) and type
sc query lanmanserver
The 'LanmanServer' service should be in the state Running. If it is not, then follow these steps to create a task using the Task Schedule to start it at system startup.
If the port is not grabbed correctly (i.e. no 10.255.255.1:445
in the 'netstat` output) then try the Old driver tweak instructions to see if that works better for you.
Home Test Machine - 6. Test Azure File Share Access
Click Explorer's Map network drive icon in the ribbon area to start adding a new network share.
References
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/6105.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论