- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Equivalent of Cisco 'bandwidth [speed]' for interface metric
On Cisco I can set interface speed label with the 'bandwidth' command. Does Fortigate have an equivalent to set the speed, so bandwidth usage will be correctly assigned a percentage based on the interface speed/bandwidth label?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can use the following command:
config system interface edit "port1" set outbandwidth 10000
set inbandwidth 10000 end
inbandwidth <integer> The limit of ingress traffic, in Kbit/sec, on this interface, default is 0 which indicate unlimited. outbandwidth <integer> The limit of egress traffic, in Kbit/sec, on this interface, default is 0 which indicate unlimited.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can use the following command:
config system interface edit "port1" set outbandwidth 10000
set inbandwidth 10000 end
inbandwidth <integer> The limit of ingress traffic, in Kbit/sec, on this interface, default is 0 which indicate unlimited. outbandwidth <integer> The limit of egress traffic, in Kbit/sec, on this interface, default is 0 which indicate unlimited.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you. This looks like what I needed!!!