Class: Y2Network::Widgets::IP6Forwarding
- Inherits:
-
CWM::CheckBox
- Object
- CWM::CheckBox
- Y2Network::Widgets::IP6Forwarding
- Defined in:
- src/lib/y2network/widgets/ip6_forwarding.rb
Instance Method Summary collapse
- #help ⇒ Object
- #init ⇒ Object
-
#initialize(config) ⇒ IP6Forwarding
constructor
A new instance of IP6Forwarding.
- #label ⇒ Object
- #store ⇒ Object
Constructor Details
#initialize(config) ⇒ IP6Forwarding
Returns a new instance of IP6Forwarding.
25 26 27 28 29 |
# File 'src/lib/y2network/widgets/ip6_forwarding.rb', line 25 def initialize(config) textdomain "network" @config = config end |
Instance Method Details
#help ⇒ Object
44 45 46 47 48 49 50 51 |
# File 'src/lib/y2network/widgets/ip6_forwarding.rb', line 44 def help _( "<p>Enable <b>IPv6 Forwarding</b> (forwarding packets from external networks\n" \ "to the internal one) if this system is a router.\n" \ "<b>Warning:</b> IPv6 forwarding disables IPv6 stateless address\n" \ "autoconfiguration (SLAAC).</p>" ) end |
#init ⇒ Object
31 32 33 34 |
# File 'src/lib/y2network/widgets/ip6_forwarding.rb', line 31 def init self.value = @config.routing.forward_ipv6 disable if @config.backend?(:network_manager) end |
#label ⇒ Object
40 41 42 |
# File 'src/lib/y2network/widgets/ip6_forwarding.rb', line 40 def label _("Enable I&Pv6 Forwarding") end |
#store ⇒ Object
36 37 38 |
# File 'src/lib/y2network/widgets/ip6_forwarding.rb', line 36 def store @config.routing.forward_ipv6 = value end |