Class: Y2Network::Widgets::IP4Forwarding

Inherits:
CWM::CheckBox
  • Object
show all
Defined in:
src/lib/y2network/widgets/ip4_forwarding.rb

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ IP4Forwarding

Returns a new instance of IP4Forwarding.



25
26
27
28
29
30
# File 'src/lib/y2network/widgets/ip4_forwarding.rb', line 25

def initialize(config)
  super()
  textdomain "network"

  @config = config
end

Instance Method Details

#helpObject



45
46
47
48
49
50
51
52
53
54
# File 'src/lib/y2network/widgets/ip4_forwarding.rb', line 45

def help
  _(
    "<p>Enable <b>IPv4 Forwarding</b> (forwarding packets from external networks\n" \
    "to the internal one) if this system is a router.\n" \
    "<b>Important:</b> if the firewall is enabled, allowing forwarding " \
    "alone is not enough. \n" \
    "You should enable masquerading and/or set at least one redirect rule in the\n" \
    "firewall configuration. Use the YaST firewall module.</p>\n"
  )
end

#initObject



32
33
34
35
# File 'src/lib/y2network/widgets/ip4_forwarding.rb', line 32

def init
  self.value = @config.routing.forward_ipv4
  disable if @config.backend?(:network_manager)
end

#labelObject



41
42
43
# File 'src/lib/y2network/widgets/ip4_forwarding.rb', line 41

def label
  _("Enable &IPv4 Forwarding")
end

#storeObject



37
38
39
# File 'src/lib/y2network/widgets/ip4_forwarding.rb', line 37

def store
  @config.routing.forward_ipv4 = value
end