blob: a6f5cca626b3cd66a281e5dbf8e95a0c1475b5c9 [file] [log] [blame]
William A. Kennington III71fc1892021-12-13 14:32:20 -08001#!/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
16override=/run/systemd/system/gbmc-ncsi-dhcrelay.service.d/10-nosp.conf
17mkdir -p "$(dirname "$override")"
18echo '[Service]' >"$override"
19echo '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.
23systemctl cat gbmc-ncsi-dhcrelay | grep '^ExecStart=' | sed 's, -rp 3967,,' >>"$override"
24systemctl daemon-reload
25systemctl reset-failed gbmc-ncsi-dhcrelay
26systemctl restart --no-block gbmc-ncsi-dhcrelay
27
28read -r -d '' contents <<EOF
29table inet filter {
30 chain ncsi_legacy_input {
31 udp dport 547 accept
32 }
33}
34EOF
35rfile=/run/nftables/60-gbmc-ncsi-ra.rules
36mkdir -p "$(dirname "$rfile")"
37printf '%s' "$contents" >"$rfile"
38systemctl reset-failed nftables
39systemctl --no-block reload-or-restart nftables