#!/bin/bash

### This script disables multicast on the red interface

IFACE=`cat /var/ipfire/red/iface 2>/dev/null | tr -d '\012'`

[ "$IFACE" != "" ] && ifconfig $IFACE -multicast

exit 0
