René's URL Explorer Experiment


Title: network create non-routed without gateway no longer possible · Issue #2841 · stackitcloud/stackit-sdk-python · GitHub

Open Graph Title: network create non-routed without gateway no longer possible · Issue #2841 · stackitcloud/stackit-sdk-python

X Title: network create non-routed without gateway no longer possible · Issue #2841 · stackitcloud/stackit-sdk-python

Description: Description I try to create a L2 only network, means not routed and no gateway. However a gateway is still set. (Purpose is to create a HA network between 2 servers, where only HA heartbeat is sent between 2 nodes). Steps to reproduce ap...

Open Graph Description: Description I try to create a L2 only network, means not routed and no gateway. However a gateway is still set. (Purpose is to create a HA network between 2 servers, where only HA heartbeat is sent...

X Description: Description I try to create a L2 only network, means not routed and no gateway. However a gateway is still set. (Purpose is to create a HA network between 2 servers, where only HA heartbeat is sent...

Opengraph URL: https://github.com/stackitcloud/stackit-sdk-python/issues/2841

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"network create non-routed without gateway no longer possible","articleBody":"## Description\n\nI try to create a L2 only network, means not routed and no gateway. However a gateway is still set. (Purpose is to create a HA network between 2 servers, where only HA heartbeat is sent between 2 nodes).\n\n## Steps to reproduce\n\n\n```python\n\napiclient = IaasApi(_api_configuration)\nipv4withprefix = CreateNetworkIPv4WithPrefix(prefix = '10.1.0.0/28', nameservers = [ '8.8.8.8' ])\nprint(ipv4withprefix)\n###\n### gateway=None nameservers=['8.8.8.8'] prefix='10.1.0.0/28'\n###\n\nipv4 = CreateNetworkIPv4(ipv4withprefix)\nprint(ipv4)\n###\n### oneof_schema_1_validator=None oneof_schema_2_validator=None actual_instance=CreateNetworkIPv4WithPrefix(gateway=None, nameservers=['8.8.8.8'], prefix='10.1.0.0/28') one_of_schemas={'CreateNetworkIPv4WithPrefix', 'CreateNetworkIPv4WithPrefixLength'}\n###\n\ncandidateitem = CreateNetworkPayload(name = name, ipv4 = ipv4, routed = False, dhcp = True)\nprint(candidateitem)\n###\n### dhcp=True ipv4=CreateNetworkIPv4(oneof_schema_1_validator=None, oneof_schema_2_validator=None, actual_instance=CreateNetworkIPv4WithPrefix(gateway=None, nameservers=['8.8.8.8'], prefix='10.1.0.0/28'), one_of_schemas={'CreateNetworkIPv4WithPrefix', 'CreateNetworkIPv4WithPrefixLength'}) ipv6=None labels=None name='ihe01testnetwork' routed=False routing_table_id=None\n###\n\nresult = apiclient.create_network(project_id=project_id, region=region, create_network_payload=candidateitem)\nprint(result)\n###\n### created_at=datetime.datetime(2026, 1, 20, 15, 37, 7, tzinfo=TzInfo(0)) dhcp=True id='c90cdb22-202a-46b2-b224-e268ec48e46c' ipv4=NetworkIPv4(gateway=None, nameservers=['8.8.8.8'], prefixes=['10.1.0.0/28'], public_ip=None) ipv6=None labels={} name='ihe01testnetwork' routed=False routing_table_id=None status='CREATING' updated_at=datetime.datetime(2026, 1, 20, 15, 37, 7, tzinfo=TzInfo(0))\n###\n### ---\u003e while creating, gateway is still None\n\nresult2 = apiclient.get_network(project_id=project_id, region=region, network_id='c90cdb22-202a-46b2-b224-e268ec48e46c')\nprint(result2)\n###\n### created_at=datetime.datetime(2026, 1, 20, 15, 37, 7, tzinfo=TzInfo(0)) dhcp=True id='c90cdb22-202a-46b2-b224-e268ec48e46c' ipv4=NetworkIPv4(gateway='10.1.0.1', nameservers=['8.8.8.8'], prefixes=['10.1.0.0/28'], public_ip=None) ipv6=NetworkIPv6(gateway=None, nameservers=[], prefixes=[]) labels={} name='ihe01testnetwork' routed=False routing_table_id=None status='CREATED' updated_at=datetime.datetime(2026, 1, 20, 15, 37, 10, tzinfo=TzInfo(0))\n###\n\n### ---\u003e once created, gateway is set, although it shall be NONE.\n\n```\n\n\u003c!-- Please provide us with the steps to reproduce the behavior. --\u003e\n\n1. Initialize the API\n2. Create a network with non_routed=True and ipv4.gateway=None\n3. Get details after network creation has completed\n\n## Actual behavior\n\nShows a gateway is assigned to subnet, and communicated i.e. to DHCP clients\n\n## Expected behavior\n\nNetwork has no gateway, no gateway is communicated via DHCP.\n\n## Environment\n```\nstackit-core==0.2.0\nstackit-iaas==1.1.0\n```\n\n\n## Additional info\nAddon: Also via stackit CLI this seems to not work.... option `no-ipv4-gateway` seems to be ignored? Although network-interface list shows that there is no gateway interface from the project router (only the meta interface), the network overview still shows the gateway IP.\n\n```\nstackit network create --name ihe01testnetwork --non-routed --no-ipv4-gateway --ipv4-prefix \"10.1.0.0/28\"\n\nstackit network describe 83957c75-4218-48b7-af25-5ed22960ae1b\n\n ID                │ 83957c75-4218-48b7-af25-5ed22960ae1b\n───────────────────┼──────────────────────────────────────\n NAME              │ ihe01testnetwork\n───────────────────┼──────────────────────────────────────\n STATE             │ CREATED\n───────────────────┼──────────────────────────────────────\n ROUTED            │ false\n───────────────────┼──────────────────────────────────────\n IPv4 GATEWAY      │ 10.1.0.1\n───────────────────┼──────────────────────────────────────\n IPv4 NAME SERVERS │ 208.67.222.222, 208.67.220.220\n───────────────────┼──────────────────────────────────────\n IPv4 PREFIXES     │ 10.1.0.0/28\n```\n\n","author":{"url":"https://github.com/cldmkr","@type":"Person","name":"cldmkr"},"datePublished":"2026-01-20T15:51:10.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/2841/stackit-sdk-python/issues/2841"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:07e64fd5-b36a-b778-c322-698ec40c5111
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB2AA:3C057:4C69A9:694546:6981F779
html-safe-nonce09836c920954edf50bfca638782e61490ca437e542d1acba704a04778857c358
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMkFBOjNDMDU3OjRDNjlBOTo2OTQ1NDY6Njk4MUY3NzkiLCJ2aXNpdG9yX2lkIjoiODQ4MDQxMzc5OTYwMDQ4NjI2NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacbcdfffc26aa477c3e2bbfbb75deaf4622cc0b749104a5030d3f78497899b6950
hovercard-subject-tagissue:3834331707
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/stackitcloud/stackit-sdk-python/2841/issue_layout
twitter:imagehttps://opengraph.githubassets.com/e37c6a9ec4393c2ece3d7097fd84cad69857ab7407770c354411f88eecdc8265/stackitcloud/stackit-sdk-python/issues/2841
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/e37c6a9ec4393c2ece3d7097fd84cad69857ab7407770c354411f88eecdc8265/stackitcloud/stackit-sdk-python/issues/2841
og:image:altDescription I try to create a L2 only network, means not routed and no gateway. However a gateway is still set. (Purpose is to create a HA network between 2 servers, where only HA heartbeat is sent...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamecldmkr
hostnamegithub.com
expected-hostnamegithub.com
None9936dceb24cf8ba2521c41b894b28505ddddd1cb0b59da13279e82a3931479ca
turbo-cache-controlno-preview
go-importgithub.com/stackitcloud/stackit-sdk-python git https://github.com/stackitcloud/stackit-sdk-python.git
octolytics-dimension-user_id55577607
octolytics-dimension-user_loginstackitcloud
octolytics-dimension-repository_id872376182
octolytics-dimension-repository_nwostackitcloud/stackit-sdk-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id872376182
octolytics-dimension-repository_network_root_nwostackitcloud/stackit-sdk-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release4ab65d8f884b21d3fd2259ba6a73d6fae4e3c596
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/stackitcloud/stackit-sdk-python/issues/2841#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackitcloud%2Fstackit-sdk-python%2Fissues%2F2841
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackitcloud%2Fstackit-sdk-python%2Fissues%2F2841
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=stackitcloud%2Fstackit-sdk-python
Reloadhttps://github.com/stackitcloud/stackit-sdk-python/issues/2841
Reloadhttps://github.com/stackitcloud/stackit-sdk-python/issues/2841
Reloadhttps://github.com/stackitcloud/stackit-sdk-python/issues/2841
stackitcloud https://github.com/stackitcloud
stackit-sdk-pythonhttps://github.com/stackitcloud/stackit-sdk-python
Notifications https://github.com/login?return_to=%2Fstackitcloud%2Fstackit-sdk-python
Fork 2 https://github.com/login?return_to=%2Fstackitcloud%2Fstackit-sdk-python
Star 47 https://github.com/login?return_to=%2Fstackitcloud%2Fstackit-sdk-python
Code https://github.com/stackitcloud/stackit-sdk-python
Issues 4 https://github.com/stackitcloud/stackit-sdk-python/issues
Pull requests 2 https://github.com/stackitcloud/stackit-sdk-python/pulls
Actions https://github.com/stackitcloud/stackit-sdk-python/actions
Projects 0 https://github.com/stackitcloud/stackit-sdk-python/projects
Security 0 https://github.com/stackitcloud/stackit-sdk-python/security
Insights https://github.com/stackitcloud/stackit-sdk-python/pulse
Code https://github.com/stackitcloud/stackit-sdk-python
Issues https://github.com/stackitcloud/stackit-sdk-python/issues
Pull requests https://github.com/stackitcloud/stackit-sdk-python/pulls
Actions https://github.com/stackitcloud/stackit-sdk-python/actions
Projects https://github.com/stackitcloud/stackit-sdk-python/projects
Security https://github.com/stackitcloud/stackit-sdk-python/security
Insights https://github.com/stackitcloud/stackit-sdk-python/pulse
New issuehttps://github.com/login?return_to=https://github.com/stackitcloud/stackit-sdk-python/issues/2841
New issuehttps://github.com/login?return_to=https://github.com/stackitcloud/stackit-sdk-python/issues/2841
network create non-routed without gateway no longer possiblehttps://github.com/stackitcloud/stackit-sdk-python/issues/2841#top
api_limitationhttps://github.com/stackitcloud/stackit-sdk-python/issues?q=state%3Aopen%20label%3A%22api_limitation%22
bugSomething isn't workinghttps://github.com/stackitcloud/stackit-sdk-python/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/cldmkr
https://github.com/cldmkr
cldmkrhttps://github.com/cldmkr
on Jan 20, 2026https://github.com/stackitcloud/stackit-sdk-python/issues/2841#issue-3834331707
api_limitationhttps://github.com/stackitcloud/stackit-sdk-python/issues?q=state%3Aopen%20label%3A%22api_limitation%22
bugSomething isn't workinghttps://github.com/stackitcloud/stackit-sdk-python/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.