Categories
- Apache
- blogging
- bookmarks
- Calendaring
- cx_Oracle
- Debian
- Email Servers
- ESX
- Exim
- Folly
- fpm
- gcc
- git
- grub
- How Tos
- iCal
- IDE
- IIS
- ip addressing
- ipv4
- jumpstart
- libc
- libmcrypt
- lightning
- linux
- LVM
- Mail Post
- Mcrouter
- mcrypt
- microsoft
- mysql
- networking
- offsiteHowTo
- OpenSUSE
- Oracle
- Oracle Linux
- perl
- php
- phpbb
- POP3
- postfix
- Programming
- python
- qmail
- RBL
- redhat
- rpm
- SLES
- SMTP
- Software
- solaris
- spam
- SQL
- SQLAlchemy
- Sunbird
- thrift
- thunderbird
- Unix
- Wangle
- WebDav
- windows 2003
- wordpress
- zypper
Category Archives: networking
Linux HOWTO Enable Miltucast Ping (ICMP) Replies (Echo)
The 2.6 Linux kernel does not respond to multicast ICMP Echo requests by default. This is a setting in /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts Test it: # cat /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts 1 # Set it to 0 for ping replies: # echo “0” > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts # … Continue reading
Posted in How Tos, linux, networking
Leave a comment
Perl code to find an IP A in subnet B/C
my $ip = ‘1.2.3.4’; my $block1 = ‘1.2.3.0/27’; if(checkip($ip, $block1)) { print STDOUT “$ip is in $block1\n”; } else { print STDOUT “$ip is not in $block1\n”; } sub checkip() { my $ip = shift; my $block = shift; @ip1 … Continue reading
Posted in How Tos, ip addressing, ipv4, networking, perl, Programming
Leave a comment