설정 파일 하나에 인터페이스 정보 두개를 넣으니 계속 에러가 발생했고,
/etc/network/interfaces.d 디렉토리에 bond0과 bond1 파일을 만들어서 각각 설정 내용을 넣어주니 정상적으로 인식 완료
root@web-01:/etc/network/interfaces.d# cat bond0
auto eth0
iface eth0 inet manual
bond-master bond0
auto eth1
iface eth1 inet manual
bond-master bond0
auto eth2
iface eth2 inet manual
bond-master bond0
auto eth3
iface eth3 inet manual
bond-master bond0
auto bond0
iface bond0 inet static
address 192.168.200.201
netmask 255.255.255.0
post-up route add -net 192.168.100.0 netmask 255.255.255.0 gw 192.168.200.1
bond-mode 0
bond-miimon 100
bond-slaves none
root@web-01:/etc/network/interfaces.d# cat bond1
auto eth4
iface eth4 inet manual
bond-master bond1
auto eth5
iface eth5 inet manual
bond-master bond1
auto bond1
iface bond1 inet static
address xx.xx.xx.xx
netmask 255.255.254.0
gateway xx.xx.xx.1
bond-mode 0
bond-miimon 100
bond-slaves none