Home | History | Annotate | Download | only in firewalld

Lines Matching refs:interface

53 // Interface names must be shorter than 'IFNAMSIZ' chars.
129 const std::string& interface) {
130 return ApplyVpnSetup(usernames, interface, true /* add */);
134 const std::string& interface) {
135 return ApplyVpnSetup(usernames, interface, false /* delete */);
139 const std::string& interface,
147 if (!IsValidInterfaceName(interface)) {
148 LOG(ERROR) << "Invalid interface name '" << interface << "'";
152 Hole hole = std::make_pair(port, interface);
154 // We have already punched a hole for |port| on |interface|.
161 << " on interface '" << interface << "'";
162 if (!AddAcceptRules(protocol, port, interface)) {
175 const std::string& interface,
183 Hole hole = std::make_pair(port, interface);
186 // There is no firewall hole for |port| on |interface|.
194 << " on interface '" << interface << "'";
195 if (!DeleteAcceptRules(protocol, port, interface)) {
212 PlugHole(hole.first /* port */, hole.second /* interface */, &tcp_holes_,
219 PlugHole(hole.first /* port */, hole.second /* interface */, &udp_holes_,
229 const std::string& interface) {
230 if (!AddAcceptRule(kIpTablesPath, protocol, port, interface)) {
235 if (AddAcceptRule(kIp6TablesPath, protocol, port, interface)) {
242 DeleteAcceptRule(kIpTablesPath, protocol, port, interface);
255 const std::string& interface) {
257 interface);
259 port, interface);
264 const std::string& interface,
277 if (!ApplyMasquerade(interface, add)) {
279 ApplyVpnSetup(added_usernames, interface, false /* remove */);
288 ApplyVpnSetup(added_usernames, interface, false /* remove */);
301 bool IpTables::ApplyMasquerade(const std::string& interface, bool add) {
305 interface);
330 const std::string& interface) {
339 if (!interface.empty()) {
340 argv.push_back("-i"); // interface
341 argv.push_back(interface);
354 const std::string& interface) {
363 if (interface != "") {
364 argv.push_back("-i"); // interface
365 argv.push_back(interface);
375 bool IpTables::ApplyMasqueradeWithExecutable(const std::string& interface,
384 argv.push_back("-o"); // output interface
385 argv.push_back(interface);
394 << " masquerade failed for interface " << interface