#!/bin/bash
shopt -s expand_aliases
alias zz=/opt/stm/target/c.sh
# Create required Access Control Lists - one for non IP traffic
# and a second for ALL IP traffic
zz POST acls/ name layer2
zz POST acls/layer2/entries/ name layer2 ethertype 0
zz POST acls/ name all-ip
zz POST acls/all-ip/entries/ name all-ip
# Create the Egress Flow Classes used as Bandwidth paritions in the Egress Policy Map
zz POST efcs/ name all-ip
zz POST efcs/ name layer2
zz POST efcs/ name vlan-partition
# Create the Ingress Flow Classes or Classifiers
zz POST ifcs/ name all-ip acl all-ip efc all-ip
zz POST ifcs/ name layer2 acl layer2 efc layer2
# Create the Egress Policy Map and add the policies to create the bandwidth partitions
zz POST epms/ name interface-epm
zz POST epms/interface-epm/policies/ name all-ip rate 1000000 host_eq true
zz POST epms/interface-epm/policies/ name vlan-partition rate 1000000 child_eq true
zz POST epms/interface-epm/policies/ name layer2 rate 100000 ass true
zz POST epms/ name vlan-epm
zz POST epms/vlan-epm/policies/ name all-ip rate 1000000
# Create the Ingress Policy Map and add the classification policies to handle all traffic
zz POST ipms/ name ipm
zz POST ipms/ipm/policies/ name all-ip sequence 10000 reverse 1
zz POST ipms/ipm/policies/ name layer2 sequence 11000
# Now create the Interfaces, link to the policy maps and enable
zz POST interfaces/ name stm2 type eth egress_policy_map interface-epm rate 1000000
zz POST interfaces/ name stm3 type eth egress_policy_map interface-epm rate 1000000 internal true
zz PUT interfaces/stm2 ingress_policy_map ipm
zz PUT interfaces/stm3 ingress_policy_map ipm
zz PUT interfaces/stm2 peer stm3
zz PUT interfaces/stm2 state enabled
zz PUT interfaces/stm3 state enabled # Create sub interfaces to carry vlan tagged packets
zz POST interfaces/ name stm2.100 type vlan parent_efc vlan-partition egress_policy_map vlan-epm rate 1000000
zz POST interfaces/ name stm3.100 type vlan parent_efc vlan-partition egress_policy_map vlan-epm rate 1000000 internal true
zz PUT interfaces/stm2.100 ingress_policy_map ipm
zz PUT interfaces/stm3.100 ingress_policy_map ipm
zz PUT interfaces/stm2.100 peer stm3.any
zz PUT interfaces/stm2.100 state enabled
zz PUT interfaces/stm3.100 state enabled
zz POST interfaces/ name stm2.200 type vlan parent_efc vlan-partition egress_policy_map vlan-epm rate 1000000
zz POST interfaces/ name stm3.200 type vlan parent_efc vlan-partition egress_policy_map vlan-epm rate 1000000 internal true
zz PUT interfaces/stm2.200 ingress_policy_map ipm
zz PUT interfaces/stm3.200 ingress_policy_map ipm
zz PUT interfaces/stm2.200 peer stm3.any