Created on
04-11-2014
12:29 AM
Edited on
07-30-2023
11:54 PM
By
Jean-Philippe_P
Description |
This article describes that the DC Agent bandwidth usage can be estimated with the following GO script. Network communications initiated from a DC Agent:
Bandwidth usage calculation:
Bandwidth in Bytes per second = (18) + number of logons per second * (13 + payload string length).
Script execution:
go run dcagent_bwcalc.go Y 1000 WORKSTATION.fsso.local/FSSO/Francois
49018
Script arguments:
Y = Keepalive status (Enabled by default).
1000 = New logons per second.
WORKSTATION.fsso.local = Workstation name.
FSSO = Domain name.
Francois = Username.
Script result:
The GO script will return the bandwidth usage in Bytes per second.
DNS and LLMNR bandwidth usage is excluded.
The logons per second can be evaluated from the tool available on KB article FD34899 entitled 'Logons per second rate calculation with dcagentlog.txt'.
|
Scope | FSSO DC Agent. |
Solution |
/* Args: Keepalive: Y or N (Default: Y) Logons per second: 50 Payload: WORKSTATION.fsso.local/FSSO/Francois Notes: - Please use dcagent_logonspersecond.go to get logons per second. - DNS and LLMNR bandwidth usage is excluded. - Value returned is in Bytes per second. Author: fropert */ package main import ( "fmt" "os" "strconv" ) var keepalivelen int = 18 // UDP port 8002 keepalive 18 Bytes per second var headerlen int = 13 // DC Agent protocol header length func bwcalc(keepalivequestion string, logonsquestion int, payloadquestion string) int { var usage int if keepalivequestion == "Y" { usage += keepalivelen } usage += logonsquestion * (headerlen + len(payloadquestion)) return usage } func main() { keepalive := os.Args[1] logons, err := strconv.Atoi(os.Args[2]) if err != nil { os.Exit(1) } payload := os.Args[3] fmt.Println(bwcalc(keepalive, logons, payload)) } |