syslogng and splunk

47
Building Centralized Logging: Syslog Steven “Maniac” McGrath

Upload: insatiable1610

Post on 18-Dec-2014

153 views

Category:

Documents


4 download

TRANSCRIPT

Page 1: Syslogng and Splunk

Building Centralized Logging: Syslog

Steven “Maniac” McGrath

Page 2: Syslogng and Splunk

Syslog?

• logging service

• UNIX based

• Networkable

Page 3: Syslogng and Splunk

Wait a Sec...Network?

• UDP port 514

• Typically limited to 1024bytes

Page 4: Syslogng and Splunk

One more thing...

• FIFO Buffers

• First In First Out

• Rolling View of Logs

• Type of Named Pipe

Page 5: Syslogng and Splunk

FIFO...Tasty *chomp*

Item 5

Item 4Item 3Item 2

Item 1

3 Line FIFO Buffer

Page 6: Syslogng and Splunk

Getting Started...

• Ubuntu 6.06 Server

• Base Install

Page 7: Syslogng and Splunk

Installing Syslog...

• Update The Repository

Page 8: Syslogng and Splunk

Upgrade the OS

• We need to upgrade the OS to current.

Page 9: Syslogng and Splunk

Install Syslog-NG

• Syslog-NG will remove klogd, this is normal.

Page 10: Syslogng and Splunk

Reconfiguring Syslog-ng

• Configuration depends on network environment.

• Windows Hosts

• Cisco Devices

• Linux Hosts

• Other Devices and Gear

Page 11: Syslogng and Splunk

First off...Global!/etc/syslog-ng/syslog-ng.confoptions { chain_hostnames(0); time_reopen(10); time_reap(360); log_fifo_size(2048); create_dirs(yes); group(admin); perm(0640); dir_perm(0755); use_dns(no); stats_freq(0);};

• Disable Hostname Chaining• Time to wait before re-establishing a dead connection• Time to wait before an idle file is closed• FIFO Buffer size• Create Directories• Permissions• Disable DNS• Disable Statistic Logging

Page 12: Syslogng and Splunk

Next, The Source

source s_all { internal(); unix-stream("/dev/log"); file("/proc/kmsg" log_prefix("kernel: ")); udp();};

/etc/syslog-ng/syslog-ng.conf

Page 13: Syslogng and Splunk

Defining Filters

• Windows Filter

• Cisco Filter

Page 14: Syslogng and Splunk

Windows Filter

filter f_windows { program(MSWinEventLog);};

/etc/syslog-ng/syslog-ng.conf

Page 15: Syslogng and Splunk

Cisco Filter

filter f_cisco_pix {host(IP.OF.PIX.DEVICE);

};

/etc/syslog-ng/syslog-ng.conf

Page 16: Syslogng and Splunk

General Filter

filter f_not_others {not host(IP.OF.PIX.DEVICE)and not program(MSWinEventLog);

};

/etc/syslog-ng/syslog-ng.conf

Page 17: Syslogng and Splunk

Destinations

• FIFO Buffers

• One Large File

Page 18: Syslogng and Splunk

Windows FIFO

destination d_windows {pipe(“/var/log/buffers/windows”);

};

/etc/syslog-ng/syslog-ng.conf

Page 19: Syslogng and Splunk

Cisco FIFO

destination d_cisco {pipe(“/var/log/buffers/cisco”);

};

/etc/syslog-ng/syslog-ng.conf

Page 20: Syslogng and Splunk

General FIFO/etc/syslog-ng/syslog-ng.conf

destination d_gen_fifo {pipe(“/var/log/buffers/syslog”);

};

Page 21: Syslogng and Splunk

...And the Archive

destination d_all {file(“/var/log/arch/$MONTH$DAY$YEAR”);

};

/etc/syslog-ng/syslog-ng.conf

Page 22: Syslogng and Splunk

Tying it all Together!

• Now we tell syslog to handle the configs. ;)

Page 23: Syslogng and Splunk

Windows Log

log { source(s_all); filter(f_windows);destination(d_windows);

};

/etc/syslog-ng/syslog-ng.conf

Page 24: Syslogng and Splunk

Cisco Log

log { source(s_all); filter(f_cisco_pix);destination(d_cisco);

};

/etc/syslog-ng/syslog-ng.conf

Page 25: Syslogng and Splunk

General FIFO

log { source(s_all); filter(f_not_others);destination(d_gen_fifo);

};

/etc/syslog-ng/syslog-ng.conf

Page 26: Syslogng and Splunk

Archive Log

log { source(s_all); destination(d_all);

};

/etc/syslog-ng/syslog-ng.conf

Page 27: Syslogng and Splunk

Finishing up...

• Making the FIFO buffers

• Creating the directory structure

Page 28: Syslogng and Splunk

Run me :)

$ sudo mkdir /var/log/arch$ sudo mkdir /var/log/buffers

$ sudo mkfifo /var/log/buffers/windows$ sudo mkfifo /var/log/buffers/cisco$ sudo mkfifo /var/log/buffers/syslog

Page 29: Syslogng and Splunk

Restart Syslog-ng

$ sudo /etc/init.d/syslog-ng restart

Page 30: Syslogng and Splunk

Is it working?

• Check your Logfiles (/var/log/arch/*)

• Check your FIFO Buffers

• cat /var/log/buffers/windows

• cat /var/log/buffers/cisco

• cat /var/log/buffers/syslog

Page 31: Syslogng and Splunk

Awsome! Wait....

• How are we gonna view this data?

Page 32: Syslogng and Splunk

splunk

• Web-based Interface

• Indexes arbitrary data

• Searchable

• Reporting

>

Page 33: Syslogng and Splunk

• No, I don’t work for them...I just really like their product.

splunk>

Page 34: Syslogng and Splunk

• Download The latest version (3.0b3 as of writing)

• Extract the tarball

• Run the application

• Make it startup with a system boot

Installing splunk>

Page 35: Syslogng and Splunk

$ wget 'http://www.splunk.com/index.php/download_track?file=/3.0b3/linux/splunk-3.0b3-20872-Linux-i686.tgz&ac=&wget=true&name=wget'

$ sudo mkdir /opt;cd /opt

$ sudo tar xzvf ~/splunk-3.0b3-20872-Linux-i686.tgz

$ sudo /opt/splunk/bin

Installing splunk>

Page 36: Syslogng and Splunk

Configuring splunk>

Page 37: Syslogng and Splunk

Configuring splunk>

Page 38: Syslogng and Splunk

Configuring splunk>

Page 39: Syslogng and Splunk

Configuring splunk>

Page 40: Syslogng and Splunk

Configuring splunk>

Page 41: Syslogng and Splunk

splunk>

Page 42: Syslogng and Splunk

Syslog Agents

• Windows Agents

• UNIX Agents

• Other Devices

Page 43: Syslogng and Splunk

Windows Logs?

• SNARE Agent

• Converts Event Logs to Syslog

• Free

Page 44: Syslogng and Splunk

UNIX Agents

• Use the syslog service!

• *.* @Syslog Server

Page 45: Syslogng and Splunk

Other Devices

• Various systems can be configured

• Cisco, Juniper, Lotus Domino, Apache, IIS, etc. are just a few examples.

Page 46: Syslogng and Splunk

Recap

• What is Syslog

• What is FIFO

• Installing and Configuring Syslog-NG

• Installing and Configuring Splunk

• Agents

Page 47: Syslogng and Splunk

Questions?