Archive

Archive for the ‘linux’ Category

Linux Command – Primer / Aide-Memoir

November 17th, 2012 No comments

System Shut Down
shutdown -h now (Displays the file hello.txt)
shutdown -h +15 (Displays the file hello.txt)
shutdown -r now (Shut Down > Restart now)
shutdown -r +15 (Shut Down > Restart in 15 minutes)

IP Configuration (Edit the ifcfg-eth0 file):
cat /etc/sysconfig/network-scripts/ifcfg-eth0     View the configuration file for eth0
vi /etc/sysconfig/network-scripts/ifcfg-eth0     Edit and Save the configuration file for eth0 Read more…

Categories: linux Tags:

The Story of Linux

January 23rd, 2012 No comments

A video from The Linux Foundation, commemorating 20 Years of the Linux Operating System: Read more…

Categories: linux Tags:

Preventing DNS Zone Transfers using ACLs in named.conf

August 31st, 2011 No comments

DNS servers can be attacked using various techniques including:

  • DNS spoofing
  • Cache poisoning
  • Registration hijacking

One of the simplest ways to defend is to strictly limit zone transfers between nameservers by defining an ACL. Many system administrators allows BIND to transfer zones in bulk outside of their network or organisation. This is an attack vector.  You can prevent this by using ACLs: Read more…

Categories: DNS and BIND, linux Tags:

DNS and BIND – Quick Setup

August 30th, 2011 No comments

named.conf
Create /etc/named.conf file specify the directory location of other files used by DNS: Read more…

Categories: DNS and BIND, linux Tags:

DNS Record Types Explained

August 26th, 2011 No comments

A Record

The majority of DNS records are “A” records. A records allow for you to point different sections of your domain to different IP addresses or servers. For example, this would be useful for having “www.domain.com” point to your web server’s IP address and “mail.domain.com” point to your mail server’s IP address. Each record includes a “Host Name” value and a corresponding IP Address. Read more…

Categories: DNS and BIND, linux Tags:

Understanding the Linux Startup Processes

August 17th, 2011 No comments

This is a link to a brief description of what happens in a Linux system, from the time that you turn on the power, to the time that you log in and get a bash prompt. Understanding this will be helpful when you need to solve problems or configure your system.

http://www.tldp.org/HOWTO/From-PowerUp-To-Bash-Prompt-HOWTO.html
Greg O’Keefe, gcokeefe@postoffice.utas.edu.au

Categories: linux Tags:

Installing Dynamips on Linux

May 30th, 2011 No comments

Instructional video courtesy of blindhog.net:

http://www.blindhog.net/tutorials/dynagen-linux-install.htm

Categories: CISCO, linux Tags:

bashrc and bash_profile

April 27th, 2011 No comments

Both the ~/.bashrc and ~/.bash_profile are scripts that might be executed when bash is invoked. The ~/.bashrc file gets executed when you run bash using an interactive shell that is not a login shell. The ~/.bash_profile only gets executed during a login shell. What does this all mean? Read more…

Categories: linux Tags:

Creating Virtual Machines using Xen Hypervisor

March 28th, 2011 No comments

These YouTube Videos show how simple it is to create Virtualized and Para-Virtualised Guest Operating Systems using Xen Hypervisor Read more…

Categories: linux Tags:

Using TCP Flags to filter 3-Way Handshake using TCPDUMP / Wireshark

March 18th, 2011 No comments

Matching TCP traffic with particular flag combinations can be a useful way of examining TCP conversations.  Refer to the TCP State Machine to understand the context of these flags: Read more…

Categories: linux Tags: ,