Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
juniper:junos [2011/02/01 16:11] a |
juniper:junos [2015/05/21 14:57] (current) zagi [Lost disk from Junos boot order] |
||
|---|---|---|---|
| Line 15: | Line 15: | ||
| dd if=/ | dd if=/ | ||
| dd if=install-media-5.4R3.2-domestic of=/ | dd if=install-media-5.4R3.2-domestic of=/ | ||
| + | |||
| + | ===== junos bash policer ===== | ||
| + | <code bash> | ||
| + | #!/bin/bash | ||
| + | # junos bash policer | ||
| + | # http:// | ||
| + | echo | ||
| + | if [ $# -lt 2 ]; then | ||
| + | echo 1>&2 "$0: not enough arguments" | ||
| + | echo | ||
| + | echo " | ||
| + | echo -e "1gb =\t./ | ||
| + | echo -e "100mb =\t./ | ||
| + | echo -e "1mb =\t./ | ||
| + | exit 0 | ||
| + | fi | ||
| + | echo | ||
| + | cir=$(($2/ | ||
| + | if (( $cir < 15000 )); then | ||
| + | cir=15000 | ||
| + | fi | ||
| + | echo "set firewall policer $1 logical-interface-policer" | ||
| + | echo "set firewall policer $1 if-exceeding bandwidth-limit $2" | ||
| + | echo "set firewall policer $1 if-exceeding burst-size-limit $cir" | ||
| + | echo "set firewall policer $1 then discard" | ||
| + | </ | ||
| ===== Lost disk from Junos boot order ===== | ===== Lost disk from Junos boot order ===== | ||

