2 native SIP TRUNKS (HELP)

I have 2 native SIP trunks but cannot get INBOUND or OUTBOUND calls on the 2nd one (trunk_3_icc_7995). Not sure what I have done wrong any help would be appreciated.

Sip.conf

[trunk_2_icc_7895]
bindaddr=192.168.1.0 ; IP address to bind to (0.0.0.0 binds to all
localnet=192.168.1.0/255.255.255.0
host=172.21.21.5
type=friend
insecure=invite,port
canreinvite=yes
context=incoming
dtmfmode=auto
disallow=all
allow=ulaw
allow=g729
allow=alaw

[trunk_3_icc_7995]
bindaddr=192.168.1.0 ; IP address to bind to (0.0.0.0 binds to all
localnet=192.168.1.0/255.255.255.0
host=172.21.22.6
type=friend
insecure=invite,port
canreinvite=yes
context=incoming
dtmfmode=auto
disallow=all
allow=ulaw
allow=g729
allow=alaw

Interfaces

auto eth0
iface eth0 inet static
address 192.168.1.69
netmask 255.255.255.0
gateway 192.168.1.10

auto eth1
iface eth1 inet static
address 192.168.3.70
netmask 255.255.255.0
#gateway 192.168.3.11
auto eth2
iface eth2 inet static
address 192.168.2.70
netmask 255.255.255.0
#gateway 192.168.2.11

#static route
up route add -net 172.21.21.0 netmask 255.255.255.0 gw 192.168.3.11 dev eth1
up route add -net 172.21.22.0 netmask 255.255.255.0 gw 192.168.2.11 dev eth2

-William