Some tricks learned during MDMA 1.1.0.1 beta testing, from:
http://mybroadband.co.za/vb/showthread.php/517805?p=10096425#post10096425
Using the modem's network interface (NDIS) while connected to a LAN
By default, Windows assigned a metric of 10 to my LAN adapter and 25 to the modem's network interface. This means that internet traffic preferred to go via my LAN adapter unless I unplugged it.
To access the internet via the modem's network interface and still access LAN resources via the LAN adapter, simply change the metric of the LAN adapter to 50 in the advanced TCP/IP properties of the adapter.
Below is the output of 'route print' after changing the setting.
Note 192.168.88.1 is the router on my LAN and 10.208.135.166 is the IP address assigned to my modem by Cell-C.
Connected but no throughput (NDIS connection)
If you are connected using the modem's network interface but don't seem to getting any throughput, make sure that the TCP/IP properties for the adapter are configured to 'obtain an IP address automatically' and 'obtain DNS server address automatically'.
You can check by typing 'IPCONFIG /ALL' at the command prompt and making sure the adapter does not have a 169.254.x.x address and that the DNS servers' IP addresses are sane. This seems to be an issue with Windows 8. (Thanks morkhans)
Unbind unnecessary services from the NDIS interface
By default, Windows binds Client for Microsoft Networks and File and Printer Sharing for Microsoft Networks to all network interfaces. You do not not want these on your public interface. Unbind them and probably everything else except for TCP/IPv4.
http://mybroadband.co.za/vb/showthread.php/517805?p=10096425#post10096425
Using the modem's network interface (NDIS) while connected to a LAN
By default, Windows assigned a metric of 10 to my LAN adapter and 25 to the modem's network interface. This means that internet traffic preferred to go via my LAN adapter unless I unplugged it.
To access the internet via the modem's network interface and still access LAN resources via the LAN adapter, simply change the metric of the LAN adapter to 50 in the advanced TCP/IP properties of the adapter.
Below is the output of 'route print' after changing the setting.
Note 192.168.88.1 is the router on my LAN and 10.208.135.166 is the IP address assigned to my modem by Cell-C.
Code:
>route print
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...e0 cb 4e c8 98 ea ...... NVIDIA nForce Networking Controller - Packet Scheduler Miniport
0x10004 ...0c 5b 8f 27 9a 64 ...... HUAWEI Mobile Connect - Network Card - Packet Scheduler Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 10.208.135.166 10.208.135.165 25
0.0.0.0 0.0.0.0 192.168.88.1 192.168.88.18 50
10.208.135.164 255.255.255.252 10.208.135.165 10.208.135.165 25
10.208.135.165 255.255.255.255 127.0.0.1 127.0.0.1 25
10.255.255.255 255.255.255.255 10.208.135.165 10.208.135.165 25
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.168.88.0 255.255.255.0 192.168.88.18 192.168.88.18 50
192.168.88.18 255.255.255.255 127.0.0.1 127.0.0.1 50
192.168.88.255 255.255.255.255 192.168.88.18 192.168.88.18 50
224.0.0.0 240.0.0.0 10.208.135.165 10.208.135.165 25
224.0.0.0 240.0.0.0 192.168.88.18 192.168.88.18 50
255.255.255.255 255.255.255.255 10.208.135.165 10.208.135.165 1
255.255.255.255 255.255.255.255 192.168.88.18 192.168.88.18 1
Default Gateway: 10.208.135.166
===========================================================================
Persistent Routes:
None
If you are connected using the modem's network interface but don't seem to getting any throughput, make sure that the TCP/IP properties for the adapter are configured to 'obtain an IP address automatically' and 'obtain DNS server address automatically'.
You can check by typing 'IPCONFIG /ALL' at the command prompt and making sure the adapter does not have a 169.254.x.x address and that the DNS servers' IP addresses are sane. This seems to be an issue with Windows 8. (Thanks morkhans)
Unbind unnecessary services from the NDIS interface
By default, Windows binds Client for Microsoft Networks and File and Printer Sharing for Microsoft Networks to all network interfaces. You do not not want these on your public interface. Unbind them and probably everything else except for TCP/IPv4.