Das Einrichten von Quality of Service (QoS) auf Ihrem Ubiquiti EdgeRouter Pro für Aircall beginnt mit dem Testen Ihrer verfügbaren Bandbreite und dem anschließenden Anwenden von Traffic-Shaping-Regeln, damit Aircall-Datenverkehr priorisiert wird.

Führen Sie die folgenden Schritte aus und nehmen Sie Tests und Änderungen nach Möglichkeit außerhalb der Geschäftszeiten vor.

Schritt 1: Bandbreitentests ausführen

Bevor Sie QoS konfigurieren, müssen Sie Ihre tatsächliche Internetbandbreite messen.

  • Starten Sie Ihre Tests außerhalb Ihrer Geschäftszeiten, um eine korrekte Bewertung Ihrer Bandbreite zu erhalten.
  • Wenn Sie bereits Traffic Shaping oder Firewall-Regeln eingerichtet haben, deaktivieren Sie diese, bevor Sie diesen Test starten.

Schritte:

  1. Gehen Sie zu Aircall Network Checker
  2. Führen Sie nacheinander drei verschiedene Geschwindigkeitstests aus.
  3. Notieren Sie jedes Ergebnis für Download und Upload.

Beispielergebnisse:

  • Download 97 Mbps / Upload 79 Mbps
  • Download 90 Mbps / Upload 84 Mbps
  • Download 98 Mbps / Upload 76 Mbps

Sie berücksichtigen dann das niedrigste Ergebnis und behalten 90 Mbps für den Download und 76 Mbps als Upload-Geschwindigkeit bei.

Schritt 2: Auf die EdgeRouter Pro CLI zugreifen

Sie können auf die CLI Ihres Ubiquiti EdgeRouter Pro über die Weboberfläche oder per SSH zugreifen.

Beispiel für einen SSH-Befehl:

ssh ubnt@192.168.1.1

Schritt 3: QoS-Konfiguration anwenden

Sie erstellen nun die QoS-Richtlinien für Download und Upload und wenden sie auf Ihre Schnittstellen an.

Wenn Sie die Befehlszeilen kopieren und einfügen, verwenden Sie nur:

  • Die ersten beiden Zeilen (configure und top)
  • Den Block mit den Download-Richtlinien
  • Den Block mit den Upload-Richtlinien
  • Die abschließenden Befehle commit und save
Befehle für die Download-Richtlinie

configure
top

# Setup of the aircall Download policy
set traffic-policy shaper DlAircall description 'Aircall Download QoS policy'
set traffic-policy shaper DlAircall bandwidth 79Mbit
set traffic-policy shaper DlAircall class 2 description 'Class for Aircall servers IP address'
# The value of your class must be at least -> (nb of aircall users) x (100Kbit)
set traffic-policy shaper DlAircall class 2 bandwidth 5000Kbit
set traffic-policy shaper DlAircall class 2 ceiling 100%
set traffic-policy shaper DlAircall class 2 priority 7
set traffic-policy shaper DlAircall class 2 match Aircall1 ip source address 54.252.254.64/26
set traffic-policy shaper DlAircall class 2 match Aircall2 ip source address 52.65.191.160/27
set traffic-policy shaper DlAircall class 2 match Aircall3 ip source address 52.65.127.160/27
set traffic-policy shaper DlAircall class 2 match Aircall4 ip source address 52.205.63.192/26
set traffic-policy shaper DlAircall class 2 match Aircall5 ip source address 177.71.206.192/26
set traffic-policy shaper DlAircall class 2 match Aircall6 ip source address 54.233.255.192/27
set traffic-policy shaper DlAircall class 2 match Aircall7 ip source address 54.233.191.0/27
set traffic-policy shaper DlAircall class 2 match Aircall8 ip source address 54.171.127.192/26
set traffic-policy shaper DlAircall class 2 match Aircall9 ip source address 52.215.127.0/24
set traffic-policy shaper DlAircall class 2 match Aircall10 ip source address 35.156.191.128/25
set traffic-policy shaper DlAircall class 2 match Aircall11 ip source address 52.58.255.224/27
set traffic-policy shaper DlAircall class 2 match Aircall12 ip source address 52.59.63.224/27
set traffic-policy shaper DlAircall class 2 match Aircall13 ip source address 54.65.63.192/26
set traffic-policy shaper DlAircall class 2 match Aircall14 ip source address 54.169.127.128/26
set traffic-policy shaper DlAircall class 2 match Aircall15 ip source address 52.220.63.128/26
set traffic-policy shaper DlAircall class 2 match Aircall16 ip source address 54.172.60.0/23
set traffic-policy shaper DlAircall class 2 match Aircall17 ip source address 34.203.250.0/23
set traffic-policy shaper DlAircall class 2 match Aircall18 ip source address 52.9.254.64/26
set traffic-policy shaper DlAircall class 2 match Aircall19 ip source address 3.122.181.0/24
# Remaining of your bandwidth come here
set traffic-policy shaper DlAircall default bandwidth 74Mbit
set traffic-policy shaper DlAircall default ceiling 100%

Befehle für die Upload-Richtlinie

# Setup of the aircall Upload policy
set traffic-policy shaper UlAircall description 'Aircall Download QoS policy'
set traffic-policy shaper UlAircall bandwidth 74Mbit
set traffic-policy shaper UlAircall class 2 description 'Class for Aircall servers IP address'
# The value of your class must be at least -> (nb of aircall users) x (100Kbit)
set traffic-policy shaper UlAircall class 2 bandwidth 5000Kbit
set traffic-policy shaper UlAircall class 2 ceiling 100%
set traffic-policy shaper UlAircall class 2 priority 7
set traffic-policy shaper UlAircall class 2 match Aircall1 ip destination address 54.252.254.64/26
set traffic-policy shaper UlAircall class 2 match Aircall2 ip destination address 52.65.191.160/27
set traffic-policy shaper UlAircall class 2 match Aircall3 ip destination address 52.65.127.160/27
set traffic-policy shaper UlAircall class 2 match Aircall4 ip destination address 52.205.63.192/26
set traffic-policy shaper UlAircall class 2 match Aircall5 ip destination address 177.71.206.192/26
set traffic-policy shaper UlAircall class 2 match Aircall6 ip destination address 54.233.255.192/27
set traffic-policy shaper UlAircall class 2 match Aircall7 ip destination address 54.233.191.0/27
set traffic-policy shaper UlAircall class 2 match Aircall8 ip destination address 54.171.127.192/26
set traffic-policy shaper UlAircall class 2 match Aircall9 ip destination address 52.215.127.0/24
set traffic-policy shaper UlAircall class 2 match Aircall10 ip destination address 35.156.191.128/25
set traffic-policy shaper UlAircall class 2 match Aircall11 ip destination address 52.58.255.224/27
set traffic-policy shaper UlAircall class 2 match Aircall12 ip destination address 52.59.63.224/27
set traffic-policy shaper UlAircall class 2 match Aircall13 ip destination address 54.65.63.192/26
set traffic-policy shaper UlAircall class 2 match Aircall14 ip destination address 54.169.127.128/26
set traffic-policy shaper UlAircall class 2 match Aircall15 ip destination address 52.220.63.128/26
set traffic-policy shaper UlAircall class 2 match Aircall16 ip destination address 54.172.60.0/23
set traffic-policy shaper UlAircall class 2 match Aircall17 ip destination address 34.203.250.0/23
set traffic-policy shaper UlAircall class 2 match Aircall18 ip destination address 52.9.254.64/26
set traffic-policy shaper UlAircall class 2 match Aircall19 ip destination address 3.122.181.0/24
# Remaining of your bandwidth come here
set traffic-policy shaper UlAircall default bandwidth 69Mbit
set traffic-policy shaper UlAircall default ceiling 100%

Richtlinien auf Schnittstellen anwenden

# Apply policies to your interfaces
# Here we assume eth1 is your internet interface and eth0 is your LAN interface
set interfaces ethernet eth1 traffic-policy out UlAircall
set interfaces ethernet eth0 traffic-policy out DlAircall

commit
save

Letzter Schritt

Sobald Sie die obigen Befehle ausgeführt und die Konfiguration gespeichert haben, ist Ihr Ubiquiti EdgeRouter Pro so eingerichtet, dass Ihre Aircall-Kommunikation priorisiert wird.