admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / playbooks / diagnose-restart-dns-resolution-linux.json
1940 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | { "name": "Diagnose & Restart DNS Resolution (Linux)", "enabled": true, "allowed_target_os": [ "linux" ], "required_approval_level": "human_in_the_loop", "forbidden_commands": [], "graph_json": { "nodes": [ { "id": "start", "type": "start", "data": {}, "position": { "x": 250, "y": 0 } }, { "id": "cmd_conf", "type": "command", "data": { "label": "Show resolver config", "command": "cat /etc/resolv.conf" }, "position": { "x": 250, "y": 130 } }, { "id": "cmd_test", "type": "command", "data": { "label": "Test resolution of a host", "command": "dig +short <host> || nslookup <host>" }, "position": { "x": 250, "y": 260 } }, { "id": "cmd_restart", "type": "command", "data": { "label": "Restart the resolver", "command": "systemctl restart systemd-resolved" }, "position": { "x": 250, "y": 390 } }, { "id": "cmd_retest", "type": "command", "data": { "label": "Re-test resolution", "command": "dig +short <host>" }, "position": { "x": 250, "y": 520 } } ], "edges": [ { "id": "e_start_cmd_conf", "source": "start", "target": "cmd_conf" }, { "id": "e_cmd_conf_cmd_test", "source": "cmd_conf", "target": "cmd_test" }, { "id": "e_cmd_test_cmd_restart", "source": "cmd_test", "target": "cmd_restart" }, { "id": "e_cmd_restart_cmd_retest", "source": "cmd_restart", "target": "cmd_retest" } ] } } |