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. |
William A. Kennington III | d5a68df | 2022-06-29 16:55:07 -0700 | [diff] [blame] | 23 | grep '^ExecStart=' /lib/systemd/system/gbmc-ncsi-dhcrelay.service | \ |
| 24 | sed 's, -rp 3967,,' >>"$override" |
William A. Kennington III | a8d4047 | 2022-01-25 16:13:00 -0800 | [diff] [blame] | 25 | |
| 26 | override=/run/systemd/system/gbmc-br-dhcp.service.d/10-direct.conf |
| 27 | mkdir -p "$(dirname "$override")" |
| 28 | echo '[Service]' >"$override" |
| 29 | echo 'ExecStart=' >>"$override" |
| 30 | # Switch the gbmcbr interface for the NCSI one to avoid passing the SOLICIT |
| 31 | # message through the BMC relay. |
William A. Kennington III | d5a68df | 2022-06-29 16:55:07 -0700 | [diff] [blame] | 32 | grep '^ExecStart=' /lib/systemd/system/gbmc-br-dhcp.service | \ |
| 33 | sed 's, -i gbmcbr, -i @NCSI_IF@,' >>"$override" |
William A. Kennington III | a8d4047 | 2022-01-25 16:13:00 -0800 | [diff] [blame] | 34 | |
William A. Kennington III | 71fc189 | 2021-12-13 14:32:20 -0800 | [diff] [blame] | 35 | systemctl daemon-reload |
| 36 | systemctl reset-failed gbmc-ncsi-dhcrelay |
| 37 | systemctl restart --no-block gbmc-ncsi-dhcrelay |
William A. Kennington III | a8d4047 | 2022-01-25 16:13:00 -0800 | [diff] [blame] | 38 | systemctl reset-failed gbmc-br-dhcp |
| 39 | systemctl restart --no-block gbmc-br-dhcp |
William A. Kennington III | 71fc189 | 2021-12-13 14:32:20 -0800 | [diff] [blame] | 40 | |
| 41 | read -r -d '' contents <<EOF |
| 42 | table inet filter { |
| 43 | chain ncsi_legacy_input { |
William A. Kennington III | a8d4047 | 2022-01-25 16:13:00 -0800 | [diff] [blame] | 44 | udp dport {546,547} accept |
William A. Kennington III | 71fc189 | 2021-12-13 14:32:20 -0800 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | EOF |
| 48 | rfile=/run/nftables/60-gbmc-ncsi-ra.rules |
| 49 | mkdir -p "$(dirname "$rfile")" |
| 50 | printf '%s' "$contents" >"$rfile" |
| 51 | systemctl reset-failed nftables |
| 52 | systemctl --no-block reload-or-restart nftables |