Nomoa.com

Paving the way for .NET in Tonga

OpenBSD

Categories
Main Menu
Subscribe to Our RSS Feed Subscribe to Comments Feed Signup for MSN Alerts to Nomoa.com: Articles Signup for Yahoo Alerts to Nomoa.com :: News Articles
Google Ads
Mind Dumps Go Here and OpenBSD
Browse in : All > Soap Box
All > Soap Box > OpenBSD
Any of these categories

Options :
View Article Map
Log In to Contribute
View Archives

Winding through – ssh tunnels

Posted by: Samiuela LV Taufa on August 15, 2008 3:49:09 AM

Avoided it for a couple of hours, but after looking it up it wasn’t that hard after all.

Summary:

I needed to connect to a client’s broadband modem to do some maintenance. Unfortunately we’ve set the client up such that administrating the modem is only possible ‘from inside’ the client’s side of the cable modem.

The 2nd problem is that the modem is administered through a web interface so the question is, how can I securely get Internet Explorer to connect through a machine on the inside back to this modem ?

In fact, only one machine on the network can access the modem.

I was side-tracked with another problem using tunnels, but the solution for this particular scenario was relatively simple.

 

ssh –L local-port:modem-ip:modem-port internal-host

local-port is the port on my local machine that I will point the browser to (for example: http://localhost:local-port)

modem-ip is the IP address for the modem, from the internal-host. For example, a non-routeable/private IP address such as 172.16.11.1.

modem-port. The port on the modem where the web interface is listening. For example 80 or 443

internal-host is the Host inside the network to which I can jump to from the outside (usually a machine with a public-ip)

ssh –L 4321:172.16.11.1:80 host.example.org

I can access the modem by starting up Internet Explorer and using the address http://localhost:4321

ssh –L 4322:172.16.11.1:443 host.example.org

I can now access the SSL secured interface by using the address https://localhost:4322

Using the above scenario you can supposedly daisy-chain (connect from one server to the next) by having multiple terminals making one link to the next.

There’s also some ssh fu where you can chain from one machine to the next to the next on a single command-line, but we’ll leave that for another day.


Meanderings
[ Meanderings ]

Woo hooo Build a Box

Posted by: Samiuela LV Taufa on August 14, 2008 12:14:29 PM

Woo hoo, built my first box in aeons.

Been playing with various bits and pieces at work trying to piece together at least another functional box. Sometime later we decided that we needed a new box and we would look at reusing as many components from the trash pile I was playing with.

Unfortunately, bits and pieces of the trash pile was working, but together there was no ensemble. We decided to get new bits for the parts that looked like were dead and yesterday was my turn to put the bits together (and pray I don’t fry anything.)

I think the last time I actually had to put a box together from scratch was back in 1998? As I recall we had a bum machine at QSC and had to get the motherboard from Australia(?) Ever since then I’ve basically had some under my wings that I told to read the Taiwanese documentation and cable the box together. Of course that was an experience in itself in finding ports not working because they just weren’t wired up.

Anyhow, a relative newbie and not wanting to ever open this box again I made sure every lose wire got plugged into something even if there was no likelihood that it would ever get used. Double checked the bits I couldn’t figure out with our resident hardware dude, crossed my fingers and pushed 240v into the machine.

Poof, no-sound, nothing! Woo hooo, go software dude. In the distant pass, when computers don’t power up, and you’re somewhat certain that the power supply works fine, pull the PCI boards out and see what happens. So, pulled out a few boards and voila machine sings beautifully.

That wasn’t too bad, now was it?


Low No Cost Tech
[ Low No Cost Tech ]

Test that firewall

Posted by: Samiuela LV Taufa on July 09, 2008 11:48:53 AM

Had my first session of validating firewall rules on Monday and Tuesday, wohooo that’s an experience. My previous installations were of small systems, so I have previous experience in ‘drafting’ the firewall rules, putting it in and letting it go live. Testing and validating the firewall essentially meant sitting there in front of the firewall server and watching traffic, tweaking issues as they became known.

Firewalls are the quality of the walls between buildings. The higher grade your firewall, the higher probability your building isn’t going to burn down, should the building next door go up in flames.

The quality of the construction material of your firewall is just part of the toolkit for minimising danger to your building, you also need to ensure that there’s no open passage for the fire to enter your building while avoiding your firewall barrier. One building that went up in flames had a decent firewall, but they had large ventilation shafts between the building and the next building, leading directly to highly combustible material. Fire from the adjoining building spread into our building through the ventilation shafts and the building came down, while the firewall held firm.

The burnt building looked like the aftermath of a bombing, the inside collapsed in soot while the firewall stood alone.

Lesson 1: Physical firewalls have the same limitations as their electronic / communications firewall counter-parts. They are only as good as the material their built with, and the ventilation shafts between your side of the firewall and the next.

Unless you want to burn your firewall to test it, the general idea is to test the materials and the process of producing your firewall.

With our computer firewall firewall, we have existing best practise procedures for designing and building the firewall, and we’re now in the stage of testing the “ventilation” shafts built into our firewalls to validate whether the rules we’ve set up for what to allow in and out through the ventilation shafts behave as we expect.

I haven’t heard of any automated tools for doing the testing, so if you’ve heard of one please do tell us.

At the moment the process of testing the open ventilation shafts (in computer speak “open ports”) is to set up a simulated network on either side of our firewall and generate network traffic trying to get through the firewall in both directions. Unfortunately, the generated cannot be purely random, each “open port” or “potentially open port” has to have a specific test.

Unless you have the money, you can’t really duplicate your live network in this test environment, so you end up spending a lot of time doing the network configuration dance, continuously readjusting your various test machines to simulate other machines and providing different services as well as simulating trying to get through the firewall to the other side.

Lesson 2: You really want a set of command-line tools for doing this. Windows greater user-feedback (GUI?) is nice, but it can really use up your time when things don’t work as expected (and how often is that the truth in a test environment.)

This is when it’s good to have several machines on an independent set of networks (i.e. at minimum you’re testing the firewall with two networks) but just as importantly several monitors, keyboards, and a cool smooth swivel chair to spin around in.

Don’t bother doing this using terminal/ssh connections, that is just a recipe for frustration and avoiding configuration options you need to consider (because often enough changes you need to do will throw you out of your terminal/ssh session)

Lesson 3: Physical hardware is way cooler than the virtual world on its own.

Most of what we tested only needed testing a direct connection to the server, but our last test before quitting for the day last night was to test whether a connection from a connection would go through on a virtual connection (VPN.) Woo hoo, that wasn’t easy, but it wasn’t as hard as initially expected (since we’d done similar stuff previously.)

If you’ve got almost the cash, where you can’t afford a full simulated network, but can afford a good size beefy duo of machines for either side of the simulated network, then you would probably go with using a network of virtual machines on either side of your firewall. Now, that would be way cool, but I don’t think my laptop is beefy enough (yet)

Oh yeah, my preferred firewall ? OpenBSD with PF, of course. For user VPNs, I’m doing pretty good with installing OpenVPN.


Low No Cost TechMeanderings
[ Low No Cost Tech | Meanderings ]

OpenVPN, how good is security

Posted by: Samiuela LV Taufa on June 08, 2008 11:53:20 PM


OBSD 4.3: fontconfig 5.1 where is it

Posted by: Samiuela LV Taufa on May 30, 2008 1:12:03 PM

Arrggghh, ya gotta hate those install moments that just fails because a 'package' doesn't exist, but the 'package' isn't really a package, and there's not much documentation on the web to help us out (i.e. minimise thinking)

OpenBSD 4.3 has the fontconfig libraries as part of the xbase, so you have to install it as part of the full install, or after installing your box to extract the files.


Low No Cost Tech
[ Low No Cost Tech ]

Securing your connections without a password

Posted by: Samiuela LV Taufa on August 09, 2007 1:33:50 PM

I'm kind of promoting that people don't use passwords for their connections, but to use keys instead ?

Environment:

Windows XP Desktop want to connect securely -to-
Unix Server running OpenSSH (e.g. Linux, BSD)

Why?

The primary rationale for promoting the use of keys amongst friends is the susceptibility of people to create less than 12 character passwords and easily fall into the habit of reusing or choosing simple passwords, which invariably increases the possibility that a hacker can automate an attack to get into your system.

By using keys, which are significantly more difficult to whack, you not only offer a higher level of security, but you can now use seriously difficult to crack passwords.


Low No Cost Tech
[ Low No Cost Tech ]

mail.show_headers weird problem

Posted by: Samiuela LV Taufa on July 17, 2007 3:50:46 PM

Thunderbird 2.0.0.X

Problem:

Printing email messages results in getting half-a-page of mail header information, before the actual message content. This is ugly as well as wasting paper and ink.

Summary:

For the past couple of months I've been having this problem with Thunderbird 2.0.0.X (5-pre at the moment) whereby printing mail messages means that I always get a print of mail envelope headers which can be very long (nearly half-a-page for some messages.) I couldn't find anything in the print-options to turn the thing off and have been looking at different options for the past month.

Today, I finally hit upon: mail.show_headers default integer 2

[enigmail: userprefs]

Replacement of Mozilla's show all headers (because the original value is overriden)
user_pref("extensions.enigmail.show_headers",1);
JS: Both mail.show_headers and extensions.enigmail.show_headers control the viewing of the headers (normal=1 / all=2).
As Enigmail needs to see all headers, it sets mail.show_headers to 2 and stores the desired view in extensions.enigmail.show_headers.
The default is derived from the setting of mail.show_headers.

Of course, once you know where the 'problem' is, it becomes easier to find the 'solution.'

Unfortunately, the printing process doesn't have a separate setting (to allow you to differentiate what you get on screen as opposed to what you get out the printer.) The solution to my printing problem is:

Set mail.show_headers to "1" (without the quotes)

But what happens to my enigmail now?


Thunderbird
  Tagged As: 
print view
PermaLink
Low No Cost Tech
[ Low No Cost Tech ]

The new jig gig

Posted by: Samiuela LV Taufa on July 11, 2007 12:04:07 PM

Will soon be in the market for getting a new PC, largely because this thing I'm running has hit its last legs and consistently freezes when I'm working with new image files from my 10MB digital camera.

I was going to take a look at getting the new gig from a local vendor (i.e. sorry DELL and others) but reading stories such as Jeff and Scott putting together their new machine just makes you wonder whether it isn't time to splash it on a custom home building kit.

Building a PC part 1

Over the next few days, I'll be building Scott Hanselman's computer. My goal today is more modest: build a minimal system that boots.

I'd like to dispel the myth that building computers is risky, or in any way difficult or complicated. If you can put together a LEGO kit, you can put together a PC from parts. It's dead easy, like snapping together so many LEGO bricks. Well, mostly. Have you seen how complicated some of those LEGO kits are?

Granted, building computers isn't for everybody. There are plenty of other things you might want to do with your time, like, say, spending time with your children, or finding a cure for cancer. That's why people buy pre-assembled computers from Dell. But if you need fine-grained control over exactly what's inside your PC, if you desire a deeper understanding of how the hardware fits together and works, then building a PC is a fun project to take on. You can easily match or beat Dell's prices in most cases, while building a superior rig -- and you can learn something along the way, too.

Here's the complete set of parts we ordered, per the component list.

All you need is a few basic tools to build this PC. I typically use needle-nose pliers, wire cutters, and a small phillips screwdriver.


dolt: Do not hit DROP Database

Posted by: Samiuela LV Taufa on July 06, 2007 12:00:43 PM

Note to self:

a) Do not hit the DROP database in phpmyadmin

b) Do not hit the DROP database in phpmyadmin

c) Do not hit the DROP database in phpmyadmin

For some clever and stupid reason, I slacked off and hit the DROP button on phpmyadmin when I was intending to clean up some unused tables on Nomoa's database.

Guess what happened ? Two weeks of posts disappeared before you could say Kalamazoo or Niuatoputapu depending on how far away you wanted to go.

The database backup was two weeks old, so we got most of the data back, and I had some of the posts backedup on the clients I use for updating the website, but essentially. If you want to be an administrator, don't do it on a slow link from the middle of Tonga and do not, repeat do not, hit DROP.


ChaosLow No Cost Tech
[ Chaos | Low No Cost Tech ]

The Gallery2 update that wasnt

Posted by: Samiuela LV Taufa on July 05, 2007 5:10:51 PM

Another adventure into the wild world of computer software, which resulted in our Gallery2 just failing altogether which seems to have been a combination of upgrading to Xaraya 1.1.3 as well as running the SVN Gallery2 2.3svn builds.

The 1st major disaster was Gallery2 2.3svn just failing to login, and there's a lot of new magic with the passwords, but there were also problems with just getting the database files working correctly.

Following no original plan, but with two thoughts in mind, I disastered that I was going to make a clean install. The two problems with the previous installation was:

  • A lot of bogus users had creeped into the Xaraya installations, and by association into the Gallery2 installation.
  • A lot of fluff in the database remained from the Gallery1 update to update to updates.

After quite a bit of hocus pocus, and a great deal of time trying to avoid a full new installation with the current svn code, we now have 2.2 Branch svn being used and since there's a way to switch to 2.3 when it is stable we'll go that route from now on.

Why was I on svn anyway? Because of those security faults that can wipe out your server. Now that I've learned how to use branches and switch between branches using the svn code repositories, I can be secured as soon as the code is updated instead of having to wait for a binary release etc. etc. etc.

Next problem was my Gallery Remote failing again, but fortunately we knew about that problem from previous reinstalls so we just had to find it on the web as shown below.

Gallery2 and Gallery Remote Issues

I was trying to get Gallery remote to work… but kept getting an error saying that it couldn’t find gallery_remote2.php.  After searching the Gallery forums for a few I foudn a few things, and it fixed the problem.

You need to find the  “GalleryRemote.properties”, mine was located at “C:Documents and SettingsShelby.GalleryRemoteGalleryRemote.properties”.  Open that file and add “forceGalleryVersion.n=2″ to the top line and then save it,

Next create a file named “gallery_remote2.php”, in that file add this following information.

< ?
header(”HTTP/1.0 404 Not Found”);
exit;
?>

Save that file and upload it to your gallery2/ directory and then you should be all set to use the gallery remote.

 Also @ the codex

 


Low No Cost Tech
[ Low No Cost Tech ]

Unix: Groupware on the free

Posted by: Samiuela LV Taufa on July 05, 2007 5:04:23 PM

There seems to be some interesting groupware products out there that are trying to remove Microsoft's Exchange server from the King of the Hill position it is on right now. Unfortunately,  most of the supposedly open source solutions are really closed source solutions with little teasers that are open source.

They are sort of like, we'll let you have the free cd player, radio, but you have to pay for the car. Like, give me the car without the cd player and I can put in my own!!!

Fortunately, there are a few truly open groupware products out there, and I've just come across a few that might be interesting to investigate further:

There are a number of different considerations for submerging your group into a Groupware solution, one being the maintainability of the system and the application of existing knowledge. Some of the solutions, especially the half-open source solutions, attempt to bring together a best of breed solution. In that way, you get a great, well tested base of components (mail server, calendar server, firewall, etc) that is integrated by the groupware team.

The other path, is to create everything yourself and hopefully have a better integration story (such as is with Microsoft Exchange.)

 


Unix: renaming multiple files at once

Posted by: Samiuela LV Taufa on July 05, 2007 5:00:40 PM

This is a common enough problem that when I came across the related discussion on the misc.openbsd mailing list I just had to summarise.

http://comments.gmane.org/gmane.os.openbsd.misc/125685

Problem:

In a given directory we have a number of photos that we would like to rename to something else. In our instance, the directory contains image files of the same naming convention, for example:

file0.jpg
file1.jpg
file2.jpg
...
...
filen.jpg

 


Low No Cost Tech
[ Low No Cost Tech ]

bsdtalk117 - One Time Passwords

Posted by: Samiuela LV Taufa on June 14, 2007 3:29:00 PM

Will Backman has a great podcast on how you can better secure your communications between yourself and your servers from remote unsecured spaces through the use of One Time Passwords (passphrases) on FreeBSD, NetBSD, and OpenBSD.

The Joy of S/Key

One Time Passwords (OTP) are certainly nothing new. In fact, they have been in use for over ten years. The idea is essentially very simple: every time you login to a system, you use a different password. If someone were to eavesdrop on the connection, the password they captured would be useless to them.

In 1994, Neil Haller of Bellcore announced the “S/KEY One Time Password System” at the Symposium on Network and Distributed System Security. It described a practical way to implement OTP that was both secure and simple. Over the years it has matured into strong, practical system that is now described by RFC2289.

The initial summary of Will's podcast is

bsdtalk117 - One Time Passwords

  • Important when you don't trust the computer you are using, such as a library computer or internet kiosk.
  • Available by default in Free/Net/Open BSD.
  • FreeBSD uses OPIE, Net/Open use S/Key.
  • One time passwords are based on your pass phrase, a non-repeating sequence number, and a seed.
  • Initial setup should be done directly on the server.
  • "skeyinit" for Net/Open, "opiepasswd -c" for FreeBSD.
  • Now you can safely (?) login to your machine from insecure locations.

    Again from The Joy of S/Key

    It is true that SSH arguably does a better job of protecting passwords from eavesdroppers. In fact SSH provides for more than that, and it also protects all content from eavesdroppers. However there is one very common form of attack to which SSH is not immune: keylogging. Keyloggers record the keys you hit, and they don't care whether you're using an SSH client or telnet. They have to be installed on the machine you are using, either in software or hardware. However, now that we live in the age of Microsoft and Cybercafes, using a trojanised machine is all too easy to do. What most people don't realise is that SSH, or at least OpenSSH, is already S/KEY aware. So why not use it ?

    So, please download and listen to the podcast


    Low No Cost Tech
    [ Low No Cost Tech ]

    Educating your old hardware, or buying your kids something other than a PS 2

    Posted by: Samiuela LV Taufa on May 14, 2007 3:51:45 PM
    Part of our investment in our kids are all those fancy advertised toys, as well as a bunch of 'educational' titles (computer programs) from Disney and other better known names in the educational software tools.
     
    We've started using older hardware (cheaper to buy) for the kids, but still have been buying CDs (albeit on the cheap compared to 'current' games)
    Computers are relatively inexpensive these days however the software that runs on the computer is still at a fairly high cost if you are looking at purchasing several titles. It seems ridiculous to go out and buy 1000's of dollars worth of software that your children can play educational games and do their school work. If you own an older computer (Pentium 2 or newer) and have a few hours free one weekend you can build your children a great computer so that they can play educational games and do their school work. Now you can finally have your computer back.

    How you ask?

    You can make your kids a usable computer by installing a free open source operating system  and some great 100% free open source applications. So first we need a operating system,  My choice of operating system for this particular task would be Ubuntu Linux primarily because it is as easy to use as Microsoft windows,  and is a one disc ISO image that you can download at  http://www.ubuntu.com/products/GetUbuntu/download?action=show&redirect=download. All the instructions you need to burn and boot the disk  are located either on or are linked from that page and are very easy to read and follow.

    If you have  an extra windows or mac license and are inclined to use Windows or mac os some of these applications will run on windows and mac. 
    There are many great applications for  children. weather they are younger  or  older   i will start with a list of applications aimed at the younger kids and i will list the application for older kids in part 2 of this article which will be posted soon

    Visit bTonga


    Chaos
    [ Chaos ]

    OpenBSD NOT on the Desktop

    Posted by: Samiuela LV Taufa on May 14, 2007 2:24:00 PM

    2007.05.11 - I've finally compeleted the download of the 4.1 i386 release of OpenBSD and am way excited about trying the system as the desktop client for my sister-in-law as a major requirement for her (as if she knows?) is a functional Office Productivity Suite (aka as MS Office replacement --> OpenOffice.)

    The other major requirements work just fine, already work well but have gathered further enhancements. Desktop Publishing/Scribus, Email/Evolution-or-Thunderbird, Internet Browser/Thunderbird.

    For the kids, two great additions are childsplay.sf.net and gcompris, two 'educational' programs for OSS operating systems.

    Visit bTonga


    Chaos
    [ Chaos ]

    The System Administrators Code of Ethics

    Posted by: Samiuela LV Taufa on May 08, 2007 2:54:15 PM

    For those who thought there doesn't exist a code of ethics for System Administrators? I'm always having to explain a number of rudimentary 'ethical standards' for new system administrators so it was time to look up the web to see what the 'professionals' have to say.

    Well there are a number of groups, System Administrators' with their published codes of ethic, so I thought it would be good to have one hanging around, care of: http://lopsa.org/CodeOfEthics 

    Find more at:

    Visit bTonga


    In TongaLow No Cost Tech
    [ In Tonga | Low No Cost Tech ]

    CUPS-PDF - Printing to a PDF file on the network

    Posted by: Samiuela LV Taufa on May 07, 2007 3:10:50 PM

    I remember circa 2002/2003 Pulu and I experimented and put together a system whereby you can have all print jobs in a networked environment go to a PDF file (for archival reasons) before going out on the printers.

    CUPS-PDF

    This software is designed to produce PDF files in a heterogeneous network by providing a PDF printer on the central fileserver. It is available under the GPL and is packaged for many different distributions or can be built directly out of the source files.

    Apparently someone else thought of a better automated solution and created a program for it @ CUPS-PDF.

    At the time, we thought that it was cool and infinitely most practical for archives that all networked print jobs should be archived as proper/certifiable copies of print documents sent out from an organisation. Now, with larger / cheaper disk space it should be seriously considered?

     

    Visit bTonga


    In Tonga
    [ In Tonga ]

    Ubuntu 7.04

    Posted by: Samiuela LV Taufa on May 04, 2007 12:34:27 PM

    One of the cousins came through with his humoungous laptop and it seems a stream of consciousness is going through his University since they've got a group of students installing Ubuntu on their laptops.

    So, I've downloaded the CDR and installed in under Virtual PC 2007 to see how it goes (not) which is an adventure in its own right.

    Nonetheless, the post is really to point out Ubuntu's torrent site where you can get your torrents of the release builds.

    I'm using torrents at the moment because the connection I'm using is quite flakey and I'm finding torrents more resistant than FTP fro large file downloads (apart from the fact that I'm downing the ISO's instead of separate files.)


    OpenBSD at runyourownserver.org

    Posted by: Samiuela LV Taufa on April 30, 2007 1:02:14 PM

    [Ref: http://www.runyourownserver.org Episode 4 - OpenBSD]

    The Lore ?

    The origins of OpenBSD ? One of these days someone associated with the project needs to come out with a press read version that we can all share from.

    In my recollection, at the beginning OpenBSD was not so much about security but about "openness" of the current source code. Security became very important quickly due to intrusions with the main mail server for the project, but the primary objective was initially to provide the current source code to anyone who was interested in the project. OpenBSD Current.

    One of the biggest gripes(?) Theo had with the trend happening with his patches to NetBSD at the time, was that he couldn't access the current state of the source for which his patches were being rejected (?) What /is/ needed is for projects to allow access to developers for the current code they are working on so developers are not wasting their time patching code that doesn't exist.

    Project Funding

    Help with funding, buy the CDs to support the project, but even better just donate the money and download from a mirror. Donated money is more valuable rather than your CD purchases, since it costs money to get that CD together for you.

    I have mostly purchased CDs when I can, and at the beginning (here in Tonga) buying CDs was not an option, it was a requirement since downloading the releases would cost heaps more than buying the CDs. Now, I'll just download from the mirror and donate instead (especially since build my own boot DVDs with the installation configuration I prefer.)

    Geez, that's recollecting a long way. Now to think about it, I think I started using OpenBSD in Tonga around the same time the Internet became available in Tonga from the http://www.kalianet.to ISP.

    PATCH Schedule

    Now there's a spark. I've generally thought of patches as find out the latest updates and patch, but not on 'a schedule.'

    This highlights the fact that most of the work I've done have been ad-hoc, for free, so there wasn't a real schedule of work to maintain patches between different versions (i.e. extending years of a single installation.) Long term installations have largely been contract work, without a long term maintenance contract so patch schedules have been more inline with being called in to do a full upgrade (OS version updates as opposed to per application patch updates.)

    OpenCVS

    I think the greatest tale of the OpenCVS project at OpenBSD is that they really believe that a lot of the technical solutions from newer Source Code Management (SCM) software are attempting to solve social (non-technical) issues. As they have experienced, software does not neatly resolve communication problems between developers. Developers need to communicate more than they need the ability to lock branches in the code.

    The CVS core code has not been maintained for many years, and is a lot of convoluted code that no-one in the Open Source eco-system has wanted to maintain/update.

    Following the developer blog that sometimes show up on http://undeadly.org the main developers are discovering a number of things about coding as well as the foundation code of CVS.


    Low No Cost Tech
    [ Low No Cost Tech ]

    Monitoring your server

    Posted by: Samiuela LV Taufa on April 30, 2007 12:39:16 PM

    [http://www.runyourownserver.org Episode 15 - Monitoring]

    After starting our documentation on installing a virtual user mail installation with Postfix / Dovecot / and PostfixAdmin I've begun to realise a number of interesting logs and log monitoring options.

    There are some basic log files that I've been keen enough on to know of the top of my head when diagnosing problems, but what about general monitoring of servers ?

    Apparently there are tools out there that can aggregate the data from different log files to provide users/admins with meaning/useful information.

    I currently don't operate a set of servers/workstations that require aggregate monitoring but it is something that has always peaked my attention as something I really need to get ontop of.

    The RYOS team previously ran a podcast on monitoring that should be interesting listening for those interested in maintaining their servers.

    Clues: Network Monitoring --> Nagios
    mrtg
    cacti
    Monitor Everything

    The core rationale is that your server needs to be operational 24/7 and you cannot observe current behaviour 24/7 so the use of the logs is the first step discovering potential problems with your beautifully running system.

    Trending.

    This is a useful idea, such as watching Demings Chart creap away from the standard quality environment.

    A higher level monitoring of the server that can point out potential problems.

    Follow the rest of the episode for your edification.



      |<   <   1   2   >   >|
    Sort by Date Title Hits