Saturday, September 6, 2008

Problem installing Google Talk on Vista

Recently I faced the following when installing Google Talk in my Vista machine:
"The new version of Google Talk cannot be installed because you are running an older version of Google Talk that is not compatible with Windows Vista. Please uninstall Google Talk as Administrator to remove the incompatible version and re-install Google Talk from http://www.google.com/talk."

Have tried many ways to overcome this problem but failed so far ...

Friday, September 5, 2008

Cisco DHCP Configuration

Dynamic Host Configuration Protocol (DHCP) is one of the most popular TCP/IP protocol uses today. It is used by networked devices to obtain information required to operate on an Internet Protocol network. These information may include
  1. IP address
  2. Default gateway
  3. DNS server address
and so on.

When a DHCP client is first switched on, it sends a broadcast packet on the network with a DHCP request. If there is a DHCP server exists in the network, this request will be picked up by the DHCP server. The DHCP server will allocate an IP address to the PC, from one of the pools of addresses it managed.

What is Windows Clustering

Clustering is the connection of multiple devices together in such a way that to the outside world, the cluster appears to be a single system. Each device in a cluster is referred to as a node.

If critical service is unavailable, business will suffer. A properly installed and configured cluster provides continued operation during hardware and software failure, and/or planned maintenance. Ability to recover from failed server hardware and failed software is the main benefit of clustering.

Windows Server 2003 clustering consists of two different technologies: Server Cluster and Network Load Balancing (NLB). Each of these technologies can be used to provide high availability for different types of services.

Server Cluster is primarily used to provide availability for mission critical applications through fail-over. It is typically used for databases, e-mail services and custom applications. Windows 2003 supports server clusters of up to eight nodes. Most clustered applications, and their associated resources, are assigned to one cluster node at a time. Node failure in a cluster is detected by the absence of heartbeats from that node. If a node fails to transmit a heartbeat packet for a designated period of time, that node is considered to have failed and the remaining nodes will takeover the work load of the failed node. In this case, the clustered application will be started on remaining nodes. Client requests are immediately redirected to the backup cluster node and the impact of the failure will be minimized.

Thursday, September 4, 2008

Chrome - Google's browser

Google has just released an open source browser - Google Chrome. It is now available at http://www.google.com/chrome. As with other Google application, it is available freely to the public.

In my tests, Chrome performed excellent in access to Gmail, Blogger page and so on. Each time launching a new tab, Chrome will show a customised homepage with graphical list of all recent visited websites. The address bar is really a google search engine - suggestions from Google search index pop up as I type URL in it. This smart predictive searching is really effective!

This new browser will surely become the top alternative to Internet Explorer and also Firefox.

Tuesday, August 26, 2008

What is Download

Donwload is transfering a file from a computer from the Internet to your computer. The computer from the Internet can be a web site, or can be a private PC.

Most of the time, people are downloading freewares / applications from the Internet to be installed in their computer.

Friday, August 15, 2008

IPv6 is the future!

The number of available IPv4 addresses is getting lesser and lesser today. Undoubtedly IPv6 is the future IP addressing standard.

In fact, IPv6 is already implemented out of the box in OS like Microsoft Windows Vista, Linux. Not only that, some newer printer or copier machines also have this implemented in their system.

As such, knowing and understanding IPv6 is getting more and more important!

Thursday, August 2, 2007

Cisco DDR Configuration

Following are some of the key points in configuring Cisco DDR on Cisco router.

DDR Legacy Concepts and Configuration

Step 1: Routing Packets Out the Interface to be Dialed
ip route 192.168.0.0 255.255.255.0 10.0.0.1
Step 2: Determining the Subset of the Packets That Trigger the Dialing Process
access-list 101 permit tcp any host 192.168.0.1 eq 80

! all ip packets being considered interesting
dialer-list 1 protocol ip permit

! all packets to the web servers consider interesting
dialer-list 2 protocol ip list 101

interface bri 0
encapsulation ppp
ip address 10.0.0.2 255.255.255.0