an unfinished DHCP/ARP/ND client simulator that can use dot1q/QinQ to simulator thousands of FTTH customers.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }