Tags: jilinhao/goreplay
Tags
capture nics (#1000) 1. move the `isDevice(l.host, pi)` to be first, as no need to iterate on all nics if it returns `true` 2. first compare by name, as same nics will have same names 3. if not found by name, compare by ips. the bug was the `strings.HasPrefix` 2 different nics with ipv6: ``` #nic1 ip: f1234::55 #nic2 ip: f1234::55::66::66 ``` so because of the `strings.HasPrefix` it was evaluated as the name nics. but they are not.
Merge pull request #992 from buger/fix/989-duplicate Issue was introduced while fixing windows probelabs/goreplay@c9274ac Added exception for Windows, which by default allows interfaces without IPs. Interface name check moved higher, so if interface namee or IP match, rest of check will be ignored. Additionally windows npcap loopback mechanism can now be picked by specifying 127.0.0.1 or loopback IP. Fix #989
Fix windows loopback Windows loopback do not have addresses
Add githubAction to build & push docker image on github release publi… …shed event. (#881) fixes #880 👍 Update Dockerfile - fix alpine image version - add RELEASE_VERSION build arg Add githubAction to build & push docker image on github release published event - add github workflow file - add dependabot file to automatically propose PRs on githubActions version update* >⚠️ *Note1: you will have to add `DOCKERHUB_USERNAME` and `DOCKERHUB_TOKEN` as github secrets in order for the >⚠️ *Note2: github dependabot support must be enabled in order for this action to work githubAction to be able to login to the dockerHub and push images on it 👍 > *Note3: we can add other dependabot entries in order to update Go modules and Dockerfile base images 👍 (i.e `FROM` parts)
Make makefile release commands reentrant and the move the binary name… …… (#815) Improved the Makefile: * Fixed release-* commands fail when running the second time * Added command to create only the binary executable on mac * Moved binary name to a variable * Fixed hardcoded container name
PreviousNext