list open / listening ports linux unix windows
- No Comments
- Dec, 26, 2010
- Angelo Schalley
- Linux, Networking, security, vmware, Windows-Microsoft
FreeBSD
On a FreeBSD Unix system, as with other BSD Unix systems, you have a number of utilities with a base system install that can be used for listing open files, running processes, and network connections. The netstat
utility is maintained as a part of the FreeBSD base system by the FreeBSD core developers, and offers exactly the sort of functionality you need to list open ports on your system.
Read more on list open / listening ports linux unix windows…
create custom role on vmware esx or virtual center for VCB backup user
- No Comments
- Dec, 16, 2010
- Angelo Schalley
- vmware
To create a VCB role
1 Log on to the VI Client as a user with Administrator privileges.
2 From the VI Client, click Administration in the navigation bar.
Read more on create custom role on vmware esx or virtual center for VCB backup user…
from from esx console command line using perl
- No Comments
- Dec, 16, 2010
- Angelo Schalley
- Linux, vmware
#!/usr/bin/perl -w
use Net::SMTP;
my $smtpServer = 'smtpserver.company.com';
my $mailFrom = 'sender@companyname.com';
my $mailTo = 'recipient@companyname.com';
my $subject = 'Test Mail';
my $emailFile = '/usr/local/bin/report.txt';
sendmail($smtpServer,$mailFrom,$mailTo,$subject,$emailFile);
sub sendmail {
my $smtpserver = $_[0];
my $sender = $_[1];
my $recipient = $_[2];
my $subject = $_[3];
my $filename = $_[4];
Read more on from from esx console command line using perl…