Skip to content

Commit

Permalink
dhcp: increase wait time
Browse files Browse the repository at this point in the history
  • Loading branch information
maxux committed Sep 23, 2024
1 parent 8ac1c63 commit d39fff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/network/dhcp/dhcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ func Probe(ctx context.Context, inf string) (output ProbeOutput, err error) {
"-i", inf, //the interface to prope
"-q", // exist once lease is optained
"-f", //foreground
"-t", "20", //send 20 dhcp queries
"-T", "1", // every second
"-t", "32", //send 20 dhcp queries
"-T", "2", // every second
"-s", "/usr/share/udhcp/probe.script", // use the prope script
"--now", // exit if lease is not obtained
)
Expand Down

0 comments on commit d39fff8

Please sign in to comment.