-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
command line parameters #3
Comments
Agreed. Are you planning to raise a PR? |
No, I'm not a developer, sorry. I'm only hoping that someone can do the trick. |
how can I change the multicast ip address? |
I've created a pull request #7 to allow the user to change the multicast address and port. It doesn't go as far as accepting command line arguments (yet) |
That's great, thank you for raising the PR. I think the validation code is a more complicated than it needs to be. Could you make it a little easier to understand by using
I like that you're checking to see if the address is in the multi-cast range, but perhaps a helper method?
I don't understand the need for |
I have made changes similar to these and updated the PR. I like what you did as it also allows for the user to use the default multicast address and port if not specified. RE: nullable, it was in the default .csprj created with a |
Thanks @groupmsl. That PR won't close this issue for CLI-based config options, but introducing the ability to change multicast address and port I'm sure will be helpful to anyone else using the tool 👍 |
We are working on a Multicast environment testing products and we are trying to test systems and automate those tests.
MC-test works great but it can go further by adding command line arguments to just "fire it and watch".
A simple -s for "send" or -r for "receive", -i for "interface" (like eth0, ens2, whatever) would be nice.
Or a simpler and better way: "-r eth0", "-s ens5", "-r 10.2.5.29",...
For example:
Sender:
mc-test -s eth0
Receiver:
mc-test -r ens6
The text was updated successfully, but these errors were encountered: