Every website owner wants good traffic for his/her website. How to get this traffic? One can get traffic for website in two ways: by cost of money or by cost of time. By cost of money means participating in PPC (pay per click) programs like Google AdWords or purchasing traffic from somewhere. Now my main focus will be on how to get traffic by cost of time. I have focused on 4 important points to get good traffic.
1.From search engines can get lots of traffic. So you have to optimize your site for search engines.
2.By submitting your site to important link directories and you can hope to get listed in search engines.
3.Participating in quality link exchange programs.
4.Participating in related forums.
Sphere: Related Content
Wednesday, October 8, 2008
Tuesday, October 7, 2008
How to remove Godzilla virus?
Now a days the increasing use of Pen Drives various types of virus infect a system is very easily. One of these common viruses is Godzilla Virus.
Common symptoms:
1.This text ‘Hacked by Godzilla Virus’ at the top of the Internet Explorer
2.Task Manager is disabled.
3.regedit (Command for Registry edit) is disabled.
4.Folder Options got disappeared
5.Can’t open any of your Hard drive (C:, D:, etc) by double clicking
6.msconfig command is disabled
To remove Godzilla virus, follow the step by step procedure given below
1.Run Process Explorer and end all the process which is running as wscript.exe
2.Run RRT (Remove Restrictions Tool, it is a small program that enables all what the virus disabled)(You can download Process Explorer and RRT at the Download Center given to the left side bar of this site)
Now, your regedit command is enabled, then
3.Go to HKEY_LOCAL_MACHINE \Software \Microsoft \Windows \Current Version \Run and delete MS32DLL (right click on it and select delete)
4.Go to HKEY_CURRENT_USER \Software \Microsoft \Internet Explorer \Main and delete ‘Window Title’ which has a value of ‘Hacked by Godzilla’
5.Go to Windows Explorer -> Tools -> Folder Options -> ViewUnder Advanced settings,
select ‘Show hidden files and folders’
uncheck ‘Hide extensions for known file types’
uncheck ‘Hide protected operating system files (Recommended)’
then Apply and OK
6.Then right click on each of your Hard drives including Pen Drive and click ‘Explore’ now delete the files with names autorun.inf and MS32DLL.dll.vbs
Restart your PC and your PC should be clean from Godzilla virus. Sphere: Related Content
Common symptoms:
1.This text ‘Hacked by Godzilla Virus’ at the top of the Internet Explorer
2.Task Manager is disabled.
3.regedit (Command for Registry edit) is disabled.
4.Folder Options got disappeared
5.Can’t open any of your Hard drive (C:, D:, etc) by double clicking
6.msconfig command is disabled
To remove Godzilla virus, follow the step by step procedure given below
1.Run Process Explorer and end all the process which is running as wscript.exe
2.Run RRT (Remove Restrictions Tool, it is a small program that enables all what the virus disabled)(You can download Process Explorer and RRT at the Download Center given to the left side bar of this site)
Now, your regedit command is enabled, then
3.Go to HKEY_LOCAL_MACHINE \Software \Microsoft \Windows \Current Version \Run and delete MS32DLL (right click on it and select delete)
4.Go to HKEY_CURRENT_USER \Software \Microsoft \Internet Explorer \Main and delete ‘Window Title’ which has a value of ‘Hacked by Godzilla’
5.Go to Windows Explorer -> Tools -> Folder Options -> ViewUnder Advanced settings,
select ‘Show hidden files and folders’
uncheck ‘Hide extensions for known file types’
uncheck ‘Hide protected operating system files (Recommended)’
then Apply and OK
6.Then right click on each of your Hard drives including Pen Drive and click ‘Explore’ now delete the files with names autorun.inf and MS32DLL.dll.vbs
Restart your PC and your PC should be clean from Godzilla virus. Sphere: Related Content
CCNA

A Network Technician configuring a router at Pass4Sure.com to provide internet access. The Pass4Sure ISP provided public IP address range of 198.18.32.65 - 198.18.32.70/29
(this is a C class IP, subnetting 5 bits in the host part, subnet mask is 255.255.255.248, block size is 8, IP range starts 198.18.32.0 – 198.18.32.7, 198.18.32.8 - 198.18.32.15 … 198.18.32.64 - 198.18.32.71 …)
ie, The ISP has provided six public IP addresses of 198.18.32.65 - 198.18.32.70
Pass4Sure.com has 62 clients that need to access internet simultaneously. This hosts use private IP address range of 192.168.6.65 – 192.168.6.126/26
(this is also a C class IP, subnetting 2 bits in the host part, subnet mask is 255.255.255.192, block size is 64, IP range starts 192.168.6.0 - 192.168.6.63, 192.168.6.64 - 192.168.6.127 …)
ie, The clients in Pass4Sure.com have been assigned private IP addresses of 192.168.6.65 – 192.168.6.126 Step: 1
Before starting NAT configuration verifies that router hostname is configured as Pass4Sure1. If not, change the hostname of the router to Pass4Sure1 using the command given below
Router>enable
Router#configure terminal
Router(config)#hostname Pass4Sure1
Step: 2
Configure appropriate interfaces for NAT Inside and NAT Outside statements. In this question configuration would have been like this
Pass4Sure1(config)#interface fastethernet 0/0
Pass4Sure1(config-if)#ip nat inside
Pass4Sure1(config-if)#exit
Pass4Sure1(config)#interface serial 0/0
Pass4Sure1(config-if)#ip nat outside
Pass4Sure1(config-if)#exit
Step: 3
Create an access-list to match the address range of clients in Pass4Sure.com for NAT translations
Pass4Sure1(config)#access-list 10 permit 192.168.6.64 0.0.0.63
Step: 4
Create a NAT Pool with pool name isp_adr and specify the pool address range provided by ISP with their netmask.
Pass4Sure1(config)#ip nat pool isp_adr 198.18.32.65 198.18.32.70 netmask 255.255.255.248
Step: 5
Using the command ‘overload’ to specify Port based NAT to support all the address range of clients in Pass4Sure.com
Pass4Sure1(config)#ip nat inside source list 10 pool isp_adr overload
Step: 6
To save this configuration
Pass4Sure1(config)#end
Pass4Sure1#copy run start
N.B: IP addresses in this question are may be changeable Sphere: Related Content
Subscribe to:
Comments (Atom)