Как ограничить пропускную способность оптоволоконного модема

230
Alex

Я собираюсь установить оптоволокно в моем доме со 100-мегабитным соединением. У меня есть 3 ПК, я хочу дать первому компьютеру всего 5 Мегабит, второму компьютеру 10 Мегабит и последнему 85 Мегабит. Как я могу управлять этой вещью? Модем "Telecom Smart modem Technicolor". Все ПК имеют Windows 10.

0
Используйте маршрутизатор с возможностями формирования трафика. Посмотрите на pfSense. Jonathon Reinhart 6 лет назад 1

2 ответа на вопрос

0
Varad Mahashabde

Since there is no universal set of instructions for all routers, here is the general idea (Some googling should help):

  1. Setup Static DHCP. This fixes the IP addresses of your computers.(somewhere in LAN settings under Advanced)
  2. Go to QoS settings and and setup the priority. Also setup the minimum bandwidth of the 10Mbps and 85 Mbps computers.

Done

0
Cown

Assuming you have a Cisco switch or router, you can add a policy on the interface to shape the traffic to the amount you wish. It is done pretty easily:

mls qos ip access-list extended ACL_5mbps permit ip any any class-map match-all CLASS_5mbps match access-group name ACL_5mbps policy-map POLICY_5mbps class CLASS_5mbps police 5000000 100000 exceed-action drop interface GigabitEthernet0/1 description 5 Mbps limit port service-policy input POLICY_5mbps 

It is even easier on a Cisco router:

mls qos class-map match-any CLASS_5mbps match any policy-map POLICY_5mbps class CLASS_5mbps shape average 5000000 interface GigabitEthernet0/1 service-policy output POLICY_5mbps 

Похожие вопросы