Sometime ago I had posted a Korn script to automate FTP login and upload of file on a Unix or Linux computer. The default shell for most Linux servers is bash. I ran into a situation on a VMware ESX…
Month: August 2009
Blat a Windows command line utility to send email with attachment.
Blat is a handy command line utility that sends email with attachment using SMTP. It can also be used to post to usenet using NNTP. It is not an SMTP server, you will need an SMTP server for Blat to…
Enable outbound FTP ports on VMware ESX server.
The operating system on VMware ESX 3 is a striped down version of linux. It has only the bare necessities for VMware to function. I wanted to configure a cron job to email the log file, but because sendmail is…
Awk the swiss army knife of the Unix toolkit.
The awk command is very handy when you need to filter the contents of a file, a pipe,or keyboard. It searches each line of input for patterns that you specify and when the pattern is matched, it performs an action.…
Explanation of Standard input-output in Unix and Linux
Once a command is run, a process is created. This process then opens three flows: stdin, called the standard input, where the process will read the input data. By default stdin refers to the keyboard; STDIN is identified by the…
Configuring the SNMP settings on a Cisco MDS 9000 series Fabric switch.
Simple Network Management Protocol (SNMP) is used to monitor network attached devices. Any changes in the status of the monitored device is transmittted to an SNMP log collection server. The server can be configured to send out notifications to the…
How to automate ftp login and file transfer
As a Linux/Unix server administrator I ran into an occasion where I had to automate the file transfer via ftp to a remote server. I had to create a shell script to automatically login to the remote ftp server and…