Configuring your computer and device for Internet Connection Sharing takes a few minutes. You will, however, need to meet the following requirements. System Requirements · Your game console must have an Ethernet port. A LAN Adapter is required for connecting to Michigan Tech’s network via ICS. · The computer you use for ICS must have two viable network connections; one to connect to Michigan Tech’s network and another to share the Internet connection with your game console. These ports must be wired Ethernet ports. · For connection sharing, ...
Wednesday, October 17, 2012
Sunday, May 20, 2012
Howto Remove a Mailbox Export Request in Exchange 2010

Completed mailbox export requests aren't cleared automatically. You can remove fully or partially completed mailbox export requests by using the Remove-MailboxExportRequest cmdlet. If you remove a partially completed mailbox export request, content already exported isn't removed from the .pst file. If you want to start a new mailbox export request to the same file and start with an empty .pst file, you must rename or delete the previous .pst file. You can't use the Exchange Management Console (EMC) to remove an export request. You must use the ...
Thursday, March 29, 2012
An A-Z Index of the Bash command line for Linux

An A-Z Index of the Bash command line for Linuxaalias Create an aliasapropos Search Help manual pages (man -k)apt-get Search for and install software packages (Debian)aspell Spell Checkerawk Find and Replace text, database sort/validate/indexbbash GNU Bourne-Again SHellbc Arbitrary precision calculator languagebg Send to backgroundbreak Exit from a loopbuiltin Run a shell builtinbzip2 Compress or decompress named file(s)ccal Display a calendarcase Conditionally perform a commandcat Display the contents of a filecd Change Directorycfdisk Partition ...
Monday, November 7, 2011
How To Make Newer, Older and Home Links Visible in Blogger?

Simply do this, Go To Blogger> Design > Edit HTML Backup Your Template Search For this code by pressing Ctrl+F, #blog-pager-newer-link { float: left;}#blog-pager-older-link { float: right;}#blog-pager { text-align: center;} 4. And replace it with this code, #blog-pager-newer-link { float: left; display:inline;}#blog-pager-older-link { float: right; ...
Configure Cisco switch telnet login and password

The ability to telnet into a Cisco switch greatly simplifies remote administration of the device. This recipe describes enabling telnet logins and password protecting them. To enable telnet logins into a Cisco switch and set the telnet password to keepout use the following commands from configuration mode: line vty 0 15password keepoutlogin To telnet to the switch, it must have an IP address configured. ...
Monday, October 31, 2011
How to disable ICMP echo responses in Linux

Many malicious attacks begin with a ping scan. Disabling ICMP echo requests prevents your system’s discovery with a ping. Disable ICMP echo responses temporarily You can temporarily disable the ICMP using the following method but this setting will be erased after the reboot.root@lifelinux:~# echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_allAlso, to enable the ICMP echo responses back, type the following command:root@lifelinux:~# echo 0 > /proc/sys/net/ipv4/icmp_echo_ignore_allDisable ICMP echo responses permanentlyYou can permanently disable ...
How to Enable TCP/IP Forwarding in Windows XP

To enable TCP/IP forwarding, follow these steps: Start Registry Editor (Regedit.exe). In Registry Editor, locate the following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters Set the following registry value: Value Name: IPEnableRouterValue type: REG_DWORDValue Data: 1 A value of 1 enables TCP/IP forwarding for all network connections that are installed and used by this computer. Quit Registry Editor. ...