Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: add support for iccp protocol #573

Closed
NikitaPuglachenko opened this issue Nov 10, 2023 · 1 comment · Fixed by #583
Closed

Feature request: add support for iccp protocol #573

NikitaPuglachenko opened this issue Nov 10, 2023 · 1 comment · Fixed by #583
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@NikitaPuglachenko
Copy link

NikitaPuglachenko commented Nov 10, 2023

Description

Add support for ICCP (Interchassis Control Protocol).
As a dependency on this request
#572

New or Affected Resource(s)

New:
junos_iccp
junos_iccp_peer

Potential Terraform Configuration

resource "junos_iccp" "iccp_config_demo" {
  authentication_key                   = "string"     # Optional, String
  local_ip_addr                        = "192.0.2.4"  # Required, String
  session_establishment_hold_time      = 60           # Optional, Number,  (45..600 seconds)
} 
resource "junos_iccp_peer" "iccp_peer_demo" {
  name                                 = "192.0.2.5"  # Required, String
  authentication_key                   = "string"     # Optional, String
  backup_liveness_detection {                         # Optional, Block
    backup_peer_ip                     = "192.0.2.6"  # Optional, String 
  }
  liveness_detection {                                # Optional, Block
    detection_time_threshold           = 1            # Optional, Number,  (1..255000 milliseconds)
    minimum_interval                   = 1            # Optional, Number,  (1..255000 milliseconds)
    minimum_receive_interval           = 1            # Optional, Number,  (1..255000 milliseconds)
    multiplier                         = 1            # Optional, Number,  (1..255)
    no_adaptation                      = true         # Optional, Boolean, (true || false)
    version                            = 1            # Optional, String(?), (0||1||"automatic)
    transmit_interval_minimum_interval = 1            # Optional, Number,  (1..255000 milliseconds)
    transmit_interval_threshold        = 1            # Optional, Number,  (1..255000 milliseconds)
  }
  local_ip_addr                        = "192.0.2.4"  # Optional, String
  session_establishment_hold_time      = 60           # Optional, Number,  (45..600 seconds)
}

References

https://www.juniper.net/documentation/us/en/software/junos/mc-lag/topics/topic-map/getting-started-mc-lag.html
https://www.juniper.net/documentation/us/en/software/junos/mc-lag/topics/ref/statement/iccp-qfx-series.html

@NikitaPuglachenko NikitaPuglachenko added the enhancement New feature or request label Nov 10, 2023
@jeremmfr
Copy link
Owner

Hi 👋

I will take care of adding this.

@jeremmfr jeremmfr self-assigned this Nov 24, 2023
@jeremmfr jeremmfr added this to the v2.4.0 milestone Nov 24, 2023
jeremmfr added a commit that referenced this issue Nov 30, 2023
jeremmfr added a commit that referenced this issue Nov 30, 2023
jeremmfr added a commit that referenced this issue Nov 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants