Showing posts with label Configuration. Show all posts
Showing posts with label Configuration. Show all posts

Monday, November 15, 2010

How to make a Windows NTP Network Time Server Configuration

computer synchronization is very important in modern computer networks, precision and time synchronization is critical in many applications, particularly time sensitive operations. Imagine buying an airline seat only to be told at the airport that the ticket was sold twice because it was then purchased a computer that had a slower clock!

Modern computers have internal clocks called Real Time Clock chips (RTC) that provide time and date. Thischips are battery backed so that even during power outages, they can maintain time but personal computers are not designed to be perfect clocks. Their design is optimized for mass production and low cost rather than maintaining accurate time.

For many applications, can be quite adequate, although many of these machines need time to be synchronized with other PCs on a network and the computers are not synchronized with each other problems can arise, such as file sharing networkor, in some environments even fraud!

Microsoft Windows 2000, a time synchronization utility built into the operating system called Windows Time (W32Time.exe) that can be configured to operate as a network server. Microsoft and others recommend that you configure a time server with a hardware source rather that the Internet where there is no authentication.

If you want to configure the Windows Time service to use the internal hardware clock, thenfirst check that w32time is located in the list of system services in the registry to check:

Click Start, Run and type regedit and click OK.

Locate and click the following registry entry:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Time

We strongly recommend that you back up the registry as serious problems can occur if you modify the registry, the changes to the registry is done at your own risk.

To begin the configuration of ainternal clock, click the following subkey:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, right-click ReliableTimeSource, click Edit.

In the Edit DWORD Value, then type 1 in the Value data box, click OK

Close the Registry Editor

To restart the Windows Time service, Run (or alternatively use the Command Prompt).

Type: net stop w32time & & net start w32time

Then press Enter.

Onlocal reset 'time the computer, type the following on all computers except the time server which must not be synchronized with itself:

w32tm-s

Configuring the Windows Time service to use an external time source, regedit, click Start, Run, and type and then click OK.

Locate the following subkey:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, click Type then click Edit Edit Value, type NTP in the Value data boxbox and click OK.

Now, in the right pane, right-click ReliableTimeSource, click Edit.

In Edit DWORD Value data box, type 0, click OK.

NtpServer right mouse button in the right pane, click Edit.

In Edit Value, type the Domain Name System (DNS), each DNS must be unique.

Now click on OK.

For Windows 2000 Service Pack 4 only the time correction settings to do thisfind:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, right-click MaxAllowedClockErrInSecs, and then click Modify the Edit DWORD Value box, a second time in seconds the maximum difference between the local clock and the time received from the NTP server types should be considered as a valid new time.

Click OK.

To find the polling interval:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

Inthe right pane, right-click the period, and then click Edit.

In Edit DWORD Value data box, type 24 then click OK

Close the Registry Editor

Click Start, then Run and type the following command and press Enter:

Net stop w32time & & net start w32time

the local 'Recovery time computer, type the following on all computers except the time server which must not be synchronized with itself:

Network Time Protocol (NTP) is an Internet protocol used totransfer of accurate time information for the time, so that an exact time can be obtained

For the Network Time Protocol, NTPServer, locate and click:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpServer

In the right pane, click Enabled, and then click Edit.

In the Edit DWORD Value, type 1 under Value data, click OK.

Now go back and click onon

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParametersNtpServer

In the right pane, click NtpServer, and then click Edit in the Edit DWORD Value data, type in the right pane, click NtpServer, and then click Edit in the Edit DWORD Value data, type the domain name system ( DNS), each DNS must be unique and need 0x1 to the end of each DNS name otherwise changes will have no effect.

Now click on OK.

Identification andClick on the following

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClientSpecialPollInterval

In the right pane, special poll interval right mouse button, click Modify.

In Edit DWORD Value data box, type the number of seconds for each poll, ie 900 to poll every 15 minutes, and then click OK.

To configure the correct settings, found:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Timeconfig

In the rightRight click MaxPosPhaseCorrection, and change, in the Edit DWORD Value, under Base, click Decimal, under Value data, type a time in seconds as 3600 (one hour) and then click OK.

Now go back and click:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Timeconfig

In the right pane, right-click MaxNegPhaseCorrection, and then click Change.

In the Edit DWORD Value box, under Base, click Decimal, type in the data value of the time in seconds that you want to poll such as 3600 (polls inhour)

Close the Registry Editor

Now that Windows Time Service, click Start, Run (or alternatively use the Command Prompt) and type reboot:

net stop w32time & & net start w32time

And on any computer other than the time server, type:

W32tm / s

And this is the server which should now be up and running.

Friends Link : Virtual Space

Sunday, November 7, 2010

ISC DHCP Server Configuration

The dhcpd server is a server that allows clients to connect to the DHCP server and requests the IP address and gateway / dns. DHCP is used in most of the major networks as a means of easy to manage IP addresses. Linux is just a server, dhcpd called creative. Dhcpd is available on the website on the Internet Software Consortum isc.org. The server must be available from your distribution, however, so check withdistribution.
ISC provides only the standard package tarball, so if your distribution does not provide the dhcpd package, it will go to the SAI kit. Download the file and extract it using the following commands:

gunzip dhcpd version.tar.gz
tar-xvf dhcpd Version.tar

Be sure to replace the current version to version. Now run the following commands:

CD dhcpd version
. / Configure
to
make install

DHCPD installwithout problems, if not, please contact the mailing list on the ISC website. There are only three tasks with dhcpd, the first is to edit the configuration file. Put the following in / etc / dhcpd.conf:

# / Etc / dhcpd.conf from Christopher Peace
ddns-update-style ad-hoc;
default-lease-time 259200;
max-lease-time 300000
option subnet-mask 255.255.255.0;
option routers 192.168.0.1;
option domain-name-servers 192.168.0.1;
subnet192.168.0.0 netmask 255.255.255.0
{Range 192.168.0.20 192.168.0.40;
range 192.168.0.50 192.168.0.90;}

Of course you want to replace the router, domain server, netmask, and range of what your network. So, I have a network that I use DHCP for a total of 60 IP addresses assigned. This range is from 0.20 -. 40, 0.50 and -. 90. DHCPD only IP addresses within this range, as I like to keep 0.1 -. 19, -. 49 .41, and .91 -. Free for servers and as 254.The "default-lease-time 'and' max-lease-time" settings are used to indicate how long the DHCP lease will last if the customer does not require additional time (default), and when asked the most .. time (max) This time is in seconds if you have a static IP assigned to a host, use the following syntax in the file / etc / dhcpd.conf.:

Host Joe {hardware ethernet
00: C0: F0: 25: b7: 15;
fixed-address 192.168.0.205;}

This will be the IP address of 192.168.0.205 to any Joetime to request an IP. The MAC address is the address of Ethernet hardware.

Now we enter the next step, create the directory / var / state / dhcp / dhcpd.leases:

touch / var / state / dhcp / dhcpd.leases

DHCPD can now start to try it. First, if you currently have another DHCP server on the network, turn on that. Then do the following:

/ Usr / sbin / dhcpd

Finally, the launch of a DHCP client (if using Windows 98/2000/XP/NT, pleaseThe ipconfig command to release the IP and then renew typing:

ipconfig / release_all
ipconfig / renew_all

This should take a little ', since the DHCP client is looking for the source server. After a little' time out, and then query the network for DHCP servers, finding our Linux. Now, once you are sure DHCPD works, we need an init script for the creation of DHCPD. This is used to start, stop and restart the dhcpd. This script initrun automatically at startup to start dhcpd. Put the following in / etc / init.d / dhcpd:

#! / Bin / sh
# / Etc / init.d / dhcpd Christopher Pace
In "$ 1"
start)
echo-n "Starting dhcpd: dhcpd"
start-stop-daemon - start - quiet - exec / usr / sbin / dhcpd
echo "."
,,
stop)
echo-n "Stopping dhcpd: dhcpd"
killall -9 dhcpd
echo "."
,,
restart)
echo-n "Starting dhcpd: dhcpd"
killall-HUP dhcpd
echo"."
,,
*)
echo "Usage: / etc / init.d / dhcpd {start | stop | start | reload | force-reload}"> & 2
exit 1
,,
ESAC
exit 0
You should now:
chmod 700 / etc / init.d / dhcpd
ntsysv

Thanks To : Toshiba Satellite Laptops Store. LOWER Prices Inkjet Printer Ink

Saturday, October 16, 2010

IP Gateway Configuration

Default Gateway is used by each host device in order to communicate with devices outside their network. In most cases, the default gateway is only responsible for the router to send packets to other networks. The gateway is a dedicated IP for the port that connects to the network host. The IP gateway devices should be regulated by end-hosts to access the Internet or to communicate outside the particular network.

If an Internet user policy, you must set thedefault gateway IP accordingly through the browser on the World Wide Web access. Setting an incorrect default gateway IP in the field may end up not having access to the Internet. Oops!

Mate! Before you learn about setting the gateway, you should know that the first IP gateway. Do not worry, it's as simple as ABC.

From your XP system, follow these steps ...

Go to the Start menu, click Run, type "cmd" in the toolbar without the quotes.
You will see a command windowrequired on your screen.
Type "ipconfig" without quotes.
Find the default gateway will be given after the IPv4 address and subnet mask.
The number of IP or range of numbers format xxx.xxx.xxx.xxx is the IP address of the gateway.

In Windows Vista or Windows 7

* Go to start.
* Enter your network connections.
* Right-click Local Area Connection.
* Click Internet Protocol 4.
* Select Properties.
* If you see in the Gateway IP field, thendone.
* Otherwise the connection is static and default gateway IP address 192.168.0.1.
* You can use the gateway IP commands like cmd tracert get it.

Now you have gateway IP, what to do next?

Reset the gateway:

What to do?

Step 1: Click Start, then Run and type cmd.
Step 2: Command Prompt window. There Ipconfig.exe
Step 3: Submit your current settings by typing ipconfig / release command prompt window.
Step 4: Typeipconfig / renew. Now enter the address must be changed and displayed on the screen
Step 5: You are a kind of exit and close the window

Here we take you through the concept of DHCP configuration so that the computer automatically connect to the Internet.

What is actually DHCP?

To say that the terms in common use is to configure your IP address, Gateway IP, IP subnet mask, DNS server, domain, and many other options, allows you to connectthe World Wide Web

Ok, show us how DHCP can be configured by PC

* Log in to your administrator account on XP.
* Open my place in the network. You can find it by going to the Start menu.
* Right-click the icon labeled "My Network Places'
* Select properties mainly plays in the background of all the options.
* Double-click "Local Area Connection icon. The icon will appear as a few computers.
* Click the General tab. You could see a long list ofprotocols to choose from.
* Scroll down a bit 'and find Internet Protocol. Click the button as property.
* Again select the General tab, you might see two options
* Click to get an IP address automatically ".

Cool! You're done. You have successfully configured DHCP on the PC.

Related : Buy Discount Nintendo DS | LOWER Prices

Saturday, September 25, 2010

How to Create a Windows NTP Network Time Server Configuration

Synchronization of computer is very important in modern computer networks, precision and timing is crucial in many applications, particularly time sensitive operations. Imagine buying an airline seat only to hear at the airport that the ticket was sold twice because it was then purchased a computer that had a slower clock!

modern computers have internal clocks called Real Time Clock chips (RTC), the date and information. Thischips supported the battery so that even during power outages, may time but personal computers are not designed to be perfect to keep the clocks. Their design has been optimized for mass production and low cost rather than maintaining accurate time.

For many applications this can be quite adequate, but often need time machines to be synchronized with other PCs on a network and when computers are not synchronized with every other problem may arise, Such as file-sharing networksor, in some environments even fraud!

Microsoft Windows 2000, a time synchronization tool built into the operating system called Windows Time (W32Time.exe) that can be configured to operate as a network server. Strongly Microsoft and others recommend a server when configured with a hardware source instead Internet, where there is no authentication.

If you configure the Windows Time service to the internal hardware clock, usefirst make sure W32Time is the list of system services in the registry to verify:

Click Start, Run and type regedit and click OK.

Locate and click the following registry entry:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Time

It is strongly recommended that you back up the registry as serious problems can occur if you modify the registry incorrectly, modifications to the registry at your own risk.

To begin configuring ainternal clock, click the following subkey:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, click ReliableTimeSource, click Change.

In the Edit DWORD Value, type 1 in the Value data box, click OK

Close the Registry Editor

To start the Windows Time Service click Start, Run (or alternatively use the operations command prompt).

Type net stop w32time & & net start W32Time

Then press Enter.

Alocal reset 'time on the computer, type the following on all computers except the time server which must not be synchronized with itself:

w32tm-s

To configure the Windows Time service to an external source, click Start, Run, type regedit and then click OK.

Locate the following subkey:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, click Type then click Modify, in edit Value type NTP in the Value dataand click OK.

Now, in the right pane, right-click ReliableTimeSource, click Change.

In the Edit DWORD Value window, under Value data, type 0, click OK.

NtpServer right mouse button in the right pane, click Edit.

In the Edit DWORD Value, type the Domain Name System (DNS), DNS, each unique.

Click OK.

For Windows 2000 Service Pack 4, set the settings to make this correctionfound:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

In the right pane, click MaxAllowedClockErrInSecs right, then change the Edit DWORD Value box, type a time when the second maximum number of seconds difference between the local clock and the received time from the NTP server to be considered a valid new time.

Click OK.

To find the polling interval:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters

Inright pane, click Period, then click Edit.

In the Edit DWORD Value window, under Value data, type 24 then click OK

Close the Registry Editor

Click Start, then Run and type the following and press Enter:

Net stop w32time & & net start W32Time

To reset the local 'time of the computer, type the following on all computers except the time server which must not be synchronized with itself:

Network Time Protocol (NTP) is an Internet protocol used toaccurate transfer of time, time that the information together, so an exact time can be obtained

For the Network Time Protocol, NTPServer, locate and click:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpServer

In the right pane, click Enabled, then click Edit.

In the Edit DWORD Value, type 1 under Value data, click OK.

Now go back and clickon

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParametersNtpServer

In the right pane, click NtpServer, then change the Edit DWORD Value data, type in the right pane, click NtpServer, then change the Edit DWORD Value data, type the Domain Name System (DNS), each DNS must be unique and need 0x1 to the end of each DNS name otherwise changes will not take effect.

Click OK.

Research andClick on the following

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClientSpecialPollInterval

In the right pane, click Special Poll Interval, click Edit.

In the Edit DWORD Value window, under Value data, type the number of seconds you want for each poll, ie 900 will poll every 15 minutes, and then click OK.

To configure correction, found:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Timeconfig

LawMaxPosPhaseCorrection right mouse button, then change the Edit DWORD Value box, under Base, click Decimal, under Value data, type a time in seconds such as 3600 (one hour) then click OK.

Now go back and click:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Timeconfig

In the right pane, click MaxNegPhaseCorrection, then change.

In the Edit DWORD Value window below, click Decimal in the Value data type the time in seconds that you want to poll such as 3600 (in pollshour)

Close the Registry Editor

Now it is time to restart Windows, click Start, Run (or alternatively use the command prompt facility) and type:

net stop w32time & & net start W32Time

And on each computer, other than the time server, type:

W32tm / s

And this is the time server should be up and running now.

Friends Link : Preview Games Console XBOX 360 Hardware Store Save!

Monday, September 20, 2010

Basic Configuration Tutorial For the Cisco ASA 5510 Firewall

Continuing our series of articles about Cisco ASA 5500 firewalls, I'm offering you here a basic configuration tutorial for the Cisco ASA 5510 security appliance. This device is the second model in the ASA series (ASA 5505, 5510, 5520 etc) and is fairly popular since is intended for small to medium enterprises. Like the smallest ASA 5505 model, the 5510 comes with two license options: The Base license and the Security Plus license. The second one (security plus) provides some performance and hardware enhancements over the base license, such as 130,000 Maximum firewall connections (instead of 50,000), 100 Maximum VLANs (instead of 50), Failover Redundancy, etc. Also, the security plus license enables two of the five firewall network ports to work as 10/100/1000 instead of only 10/100.

Next we will see a simple Internet Access scenario which will help us understand the basic steps needed to setup an ASA 5510. Assume that we are assigned a static public IP address 100.100.100.1 from our ISP. Also, the internal LAN network belongs to subnet 192.168.10.0/24. Interface Ethernet0/0 will be connected on the outside (towards the ISP), and Ethernet0/1 will be connected to the Inside LAN switch.

The firewall will be configured to supply IP addresses dynamically (using DHCP) to the internal hosts. All outbound communication (from inside to outside) will be translated using Port Address Translation (PAT) on the outside public interface. Let's see a snippet of the required configuration steps for this basic scenario:

Step1: Configure a privileged level password (enable password)

By default there is no password for accessing the ASA firewall, so the first step before doing anything else is to configure a privileged level password, which will be needed to allow subsequent access to the appliance. Configure this under Configuration Mode:

ASA5510(config)# enable password mysecretpassword

Step2: Configure the public outside interface

ASA5510(config)# interface Ethernet0/0

ASA5510(config-if)# nameif outside

ASA5510(config-if)# security-level 0

ASA5510(config-if)# ip address 100.100.100.1 255.255.255.252

ASA5510(config-if)# no shut

Step3: Configure the trusted internal interface

ASA5510(config)# interface Ethernet0/1

ASA5510(config-if)# nameif inside

ASA5510(config-if)# security-level 100

ASA5510(config-if)# ip address 192.168.10.1 255.255.255.0

ASA5510(config-if)# no shut

Step 4: Configure PAT on the outside interface

ASA5510(config)# global (outside) 1 interface

ASA5510(config)# nat (inside) 1 0.0.0.0 0.0.0.0

Step 5: Configure Default Route towards the ISP (assume default gateway is 100.100.100.2)

ASA5510(config)# route outside 0.0.0.0 0.0.0.0 100.100.100.2 1

Step 6: Configure the firewall to assign internal IP and DNS address to hosts using DHCP

ASA5510(config)# dhcpd dns 200.200.200.10

ASA5510(config)# dhcpd address 192.168.10.10-192.168.10.200 inside

ASA5510(config)# dhcpd enable inside

The above basic configuration is just the beginning for making the appliance operational. There are many more configuration features that you need to implement to increase the security of your network, such as Static and Dynamic NAT, Access Control Lists to control traffic flow, DMZ zones, VPN etc.

Visit my website in my resource box below for more information about Cisco products and solutions. You can also learn how to configure any Cisco ASA 5500 Firewall Here (applicable for ALL ASA models running software versions 7.x and 8.x).

See Also : LASIK Vision Institute Pride Scooters