William A. Kennington III | 71fc189 | 2021-12-13 14:32:20 -0800 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # Copyright 2021 Google LLC |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | override=/run/systemd/system/gbmc-ncsi-dhcrelay.service.d/10-nosp.conf |
| 17 | mkdir -p "$(dirname "$override")" |
| 18 | echo '[Service]' >"$override" |
| 19 | echo 'ExecStart=' >>"$override" |
| 20 | # Remove the source relay port from the relay, bringing it back to run on |
| 21 | # the default port 547. Our relays don't support the source port option needed |
| 22 | # to run on 3967 for our legacy NICs. |
| 23 | systemctl cat gbmc-ncsi-dhcrelay | grep '^ExecStart=' | sed 's, -rp 3967,,' >>"$override" |
| 24 | systemctl daemon-reload |
| 25 | systemctl reset-failed gbmc-ncsi-dhcrelay |
| 26 | systemctl restart --no-block gbmc-ncsi-dhcrelay |
| 27 | |
| 28 | read -r -d '' contents <<EOF |
| 29 | table inet filter { |
| 30 | chain ncsi_legacy_input { |
| 31 | udp dport 547 accept |
| 32 | } |
| 33 | } |
| 34 | EOF |
| 35 | rfile=/run/nftables/60-gbmc-ncsi-ra.rules |
| 36 | mkdir -p "$(dirname "$rfile")" |
| 37 | printf '%s' "$contents" >"$rfile" |
| 38 | systemctl reset-failed nftables |
| 39 | systemctl --no-block reload-or-restart nftables |