Skip to content
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

support DNS chaos #51

Merged
merged 6 commits into from
Apr 22, 2021
Merged

support DNS chaos #51

merged 6 commits into from
Apr 22, 2021

Conversation

WangXiangUSTC
Copy link
Collaborator

@WangXiangUSTC WangXiangUSTC commented Apr 15, 2021

Signed-off-by: xiang xiang13225080@163.com

fix #41, this pr just support update the dns server in /etc/resolv.conf

TODO: map specified host to specified IP

./bin/chaosd attack network dns --help
attack DNS server

Usage:
  chaosd attack network dns [flags]

Flags:
      --dns-server string   update the DNS server in /etc/resolv.conf with this value (default "123.123.123.123")
  -h, --help                help for dns

Global Flags:
      --log-level string   the log level of chaosd, the value can be 'debug', 'info', 'warn' and 'error'

Signed-off-by: xiang <xiang13225080@163.com>
@WangXiangUSTC WangXiangUSTC added the enhancement New feature or request label Apr 15, 2021
Signed-off-by: xiang <xiang13225080@163.com>
@WangXiangUSTC WangXiangUSTC changed the title [WIP] support DNS chaos support DNS chaos Apr 15, 2021
Signed-off-by: xiang <xiang13225080@163.com>
Signed-off-by: xiang <xiang13225080@163.com>
Signed-off-by: xiang <xiang13225080@163.com>
@chaos-mesh chaos-mesh deleted a comment from sonatype-lift bot Apr 20, 2021
@chaos-mesh chaos-mesh deleted a comment from sonatype-lift bot Apr 20, 2021
@chaos-mesh chaos-mesh deleted a comment from sonatype-lift bot Apr 20, 2021
if err != nil {
return errors.WithStack(err)
switch attack.Action {
case core.NetworkDNSAction:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That seems a bit weird. Why can't we use some if attack.NeedApplyDNS()?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DNS is different from delay, loss ..., it doesn't need to apply ipset, tc and iptables, so I think it's better to split them by switch

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But certainly DNSAttack will have attack.NeedApplyIpset() == false, so the original way would work properly?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it can work, but I think use switch can make the logic more clear

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's ok. Rest lgtm

Copy link
Member

@Andrewmatilde Andrewmatilde left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@WangXiangUSTC WangXiangUSTC merged commit 34d5e24 into main Apr 22, 2021
@WangXiangUSTC WangXiangUSTC deleted the xiang/dns branch April 22, 2021 06:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

support DNS type under Network attack
3 participants