an unfinished DHCP/ARP/ND client simulator that can use dot1q/QinQ to simulator thousands of FTTH customers.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dhcpgen.conf 484B

1234567891011121314151617181920
  1. {
  2. "pcap": {
  3. "interface": "eth1",
  4. "_filter": "( arp ) or ( ip and port 67 ) or ( ip6 and port 547 )",
  5. "filter": "icmp6 or port 67 or port 68 or port 546 or port 547 or arp",
  6. "__filter": "port 546 or port 547",
  7. "snaplen": 2000
  8. },
  9. "sleep": 1000000,
  10. "maxpkt": 1,
  11. "clients": {
  12. "count": 10,
  13. "baseoui": "5254FF",
  14. "_rampup": "number of clients per second to start, CANNOT BE 0 !!!",
  15. "rampup": 1,
  16. "ipv4": 1,
  17. "ipv6": 0,
  18. "backoff": [ 2, 5, 10, 20, 20, 20, 20 ]
  19. }
  20. }