You could disable the firewall script from executing on system startup, it's probably started from a symbolic link in /etc/rc3.d or /etc/rc5.d.
alternatively you could flush the firewall rules using the following as root:
ipchains -F
ipchains -P input ACCEPT
ipchains -P output ACCEPT
ipchains -P forward ACCEPT
thekidda