Nov
14
2008
easy 🙂
[ad]
go into device manager, show all hidden device. click on NON-PNP
look for our friend tdssserv -> deactivate it , reboot, again same but not deactivate, just remove, reboot, write me a thank you mail, that’s it 🙂
oktay
Comments Off on [virus TDSSserv.sys] how to get rid of it? | posted in virus
Nov
8
2008
install it, then create a key:
openvpn –genkey –secret keyÂ
then on pc 1: openvpn –remote 192.168.0.32 Â –dev tun1 –secret key –ifconfig 10.4.0.1 10.4.0.2 –verb 3
pc2: openvpn –remote “the-remote-name-port” Â –dev tun1 –secret key –ifconfig 10.4.0.2 10.4.01 –verb 3
Â
both should be reachable via 10… address
setup routes to get networks behind the pc’s
Â
Comments Off on [vpn] openvpn | tags: vpn | posted in routing
Nov
8
2008
win:
route print (check current routes)
route add 192.168.0.0 mask 255.255.255.0 10.4.0.1
(192.168.0.0/24 is now reachable via 10.4.0.1)Â
Â
linux:
route
route add -net 192.168.0.0 netmask 255.255.255.0 gw 10.4.0.1Â
Comments Off on [xp/linux routing] add route | tags: linux | posted in routing, windows
Nov
8
2008
Enabling TCP/IP Forwarding
for linux:Â
echo 1 > /proc/sys/net/ipv4/ip_forward
for windows:
Â
Â
1. |
Use Registry Editor (Regedt32.exe) to view the following registry key:Â Â Â
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
|
2. |
Set the following registry value:Â Â Â
Value Name: IPEnableRouter
Value type: REG_DWORD
Value Data: 1
NOTE: A value of 1 enables TCP/IP forwarding for all network connections installed and used by this computer. |
Comments Off on [xp / linux routing] how to enable ip_forward on xp | tags: windows | posted in routing, windows